首页 > 教程 >

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

2023-02-15教程围观

简介我们开发wordpress主题的过程中,经常遇到需要子分类继续使用父分类的页面模板,这样能大大减少我们的工作量。那么WordPress子分类页面如何使用父页面模板呢?这篇WordPress教程详细为你解答。//WordPress子分类页面使用父页面模板add_filter('category_template','f_category_template');functionf_category_t

  

我们开发 WordPress 主题的过程中,经常遇到需要 子分类继续使用 父分类页面模板,这样能大大减少我们的工作量。那么 WordPress 子分类页面如何使用父页面模板呢?这篇 WordPress 教程详细为你解答。

//WordPress子分类页面使用父页面模板 add_filter('category_template', 'f_category_template');function f_category_template($template){    $category = get_queried_ ();    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 );}

使用非常简单,值需要将上面代码复制到主题的 functions.php 页面即可。


下载链接:网站源码/小程序源码/网站模板下载

Tags: 模板 WordPress 页面 使用 分类