php 标签页上的自定义帖子类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 标签页上的自定义帖子类型相关的知识,希望对你有一定的参考价值。

//show your custom post types on tag pages
function wpse28145_add_custom_types( $query ) {
    if( is_tag() && $query->is_main_query() ) {

        // this gets all post types:
        $post_types = get_post_types();

        // alternately, you can add just specific post types using this line instead of the above:
        // $post_types = array( 'post', 'your_custom_type' );

        $query->set( 'post_type', $post_types );
    }
}
add_filter( 'pre_get_posts', 'wpse28145_add_custom_types' );

以上是关于php 标签页上的自定义帖子类型的主要内容,如果未能解决你的问题,请参考以下文章

通过存档页面上的自定义字段查询自定义帖子类型

php 自定义元字段的自定义帖子类型

PHP 按照任何帖子类型的自定义分类的条款列出帖子

php 具有自定义分类类别的自定义帖子类型

php 创建具有自定义分类的自定义帖子类型

php MU插件|新的自定义帖子类型