php WordPress单页/发布模板的类别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress单页/发布模板的类别相关的知识,希望对你有一定的参考价值。

<?php

// CATEGORY SINGLE TEMPLATES :: single-{category_slug}.php
add_filter( 'single_template',
    create_function( '$t', 'foreach( (array) get_the_category() as $cat ) {
        if ( file_exists(TEMPLATEPATH . "/single-{$cat->slug}.php") ) return TEMPLATEPATH . "/single-{$cat->slug}.php";
    } return $t;' ) );


// Example
// single-news.php

以上是关于php WordPress单页/发布模板的类别的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress自定义类别发布模板

PHP 类别的页面模板(WordPress)

PHP Wordpress - 模板中的类别标题和描述

php 创建基于类别加载的自定义WordPress模板

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

如何使用 twig 渲染单页 wordpress 模板