有没有办法将常规类别与自定义帖子类型一起使用?

时间:2010-12-29 作者:David

有没有办法将常规类别与自定义帖子类型一起使用?对于常规类别(如permalink选项等),似乎有更好的功能和选项。

1 个回复
最合适的回答,由SO网友:Jan Fabry 整理而成

没问题,类别和标记也注册为分类法,您可以将其传递给taxonomies 调用时的参数register_post_type(). 类别为category 和标签是post_tag. 您也可以稍后使用register_taxonomy_for_object_type():

add_action( \'init\', \'wpse6098_init\', 100 ); // 100 so the post type has been registered
function wpse6098_init()
{
    register_taxonomy_for_object_type( \'category\', \'your_custom_post_type\' );
}

结束

相关推荐

WordPress删除wp_List_Categories中最后一项的分隔符

我正在尝试删除最后一个分隔符(通常是<br/> 标记,但我将其从wp\\u list\\u categories的最后一个链接更改为“/”)。基本上我想要这个:类别1//类别2//类别3//看起来像这样:类别1//类别2//类别3以下是我当前使用的代码:<?php $cat_array = array(); $args = array( \'author\' => get_the_author_meta(\'id\'),&#x