欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > wordpress教程 >
wordpress教程

WordPress子分类页面使用父分类页面模板

(元素模板) / 2022-03-05 14:15

在我们开发Wordpress主题的时候,我们会希望子分类继续使用父分类的页面模板,这样能大大减少我们的工作量。

那么WordPress子分类页面如何使用父页面模板呢?

这篇Wordpress教程详细为你解答。 将下面代码复制到主题的functions.php页面即可。

//WordPress子分类页面使用父页面模板

add_filter('category_template', 'f_category_template');
function f_category_template($template){
	$category = get_queried_object();
	if($category->parent !='0'){
		while($category->parent !='0'){
			$category = get_category($category->parent);
		}
	}
	
	$templates = array();
 
	if ( $category ) {
		$templates[] = "category-{$category->slug}.php";
		$templates[] = "category-{$category->term_id}.php";
	}
	$templates[] = 'category.php';
	return locate_template( $templates );
}
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com