使子分类的category页面渲染父category页面的模板
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 add_filter(̵…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 );
}
|
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!