php 自定义帖子类型添加默认类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义帖子类型添加默认类别相关的知识,希望对你有一定的参考价值。
'supports' => array( 'title', 'editor', 'custom-fields', 'thumbnail', 'excerpt', 'revisions', 'thumbnail' ),
'taxonomies' => array( 'category')
function add_custom_types_to_tax( $query )
{
if( is_category() && empty( $query->query_vars['suppress_filters'] ) )
{
// Get all your post types
$post_types = get_post_types();
$query->set( 'post_type', $post_types );
return $query;
}
}
add_filter( 'pre_get_posts', 'add_custom_types_to_tax' );
以上是关于php 自定义帖子类型添加默认类别的主要内容,如果未能解决你的问题,请参考以下文章
php Wordpress - 列出所有(自定义帖子类型)帖子类别
php 具有自定义分类类别的自定义帖子类型
php 如果是自定义帖子类型类别 - 存档
PHP 获取自定义帖子类型的WordPress标签/类别
php 通过acf选择字段查询类别中的自定义帖子类型
php 通过acf选择字段查询类别中的自定义帖子类型