傻大憨

WordPress为某个分类添加特定的内容页模板

如果想给某个分类目录下的内容页用不的模板,可以使用以下的方式实现。

将以下这段代码放到functions.php中

add_filter( 'single_template', 'get_wordpress_cat_template' ) ;
function get_wodepress_cat_template( $single_template ) {
    global $post;//wodepress.com
    if ( is_category( 'news' ) || in_category( 'news' ) ) {
        $single_template = dirname( __FILE__ ) . '/single-news.php';
    }
    return $single_template;
}

上面的”news”可以是分别目录的别名,也可以是分类目录的ID。

将代码添加了保存后,在主题文件夹中新建single-news.php文件。此时别名为news的分类目录下的内容页调用的的就是single-news.php对应的模板了。

Published
Categorized as 建站知识 Tagged ,

By 傻大憨

shadahan.com是一个关注跨境电商、创业话题的网站。

wordpress调用全站热门文章

调用全站热门wordpress文章代码

WordPress有没有必要选择付费主题

能用付费的就别用免费的

外贸独立站使用简站WordPress模板搭建的优势

使用简站WordPress模板搭建外贸独立站具有诸多优势,包括快速搭建、易于管理和维护、美观专业的设计、优化搜索引擎排名、良好的用户体验、支持多语言和国际化以及成本效益高等。

Jianzhanpress themes are the best Chinese WordPress themes to use

Jianzhanpress.com themes are the best Chinese WordPress themes to use

wordpress中文官网地址

wordpress中文官网地址是什么

wordpress做企业官网有什么优势

使用WordPress作为企业官网是一个明智的选择,具有许多优势和潜力。