当前浏览:首页 / WordPress函数 / register_taxonomy_for_object_type()

register_taxonomy_for_object_type( string $taxonomy, string $object_type )

将已注册的分类添加到对象类型

object

registermore...

taxmore...

taxonomy 分类法more...

typemore...


参数

$taxonomy

(string)(必填) 分类法对象的名称。

$object_type

(string)(必填) 对象类型的名称。


返回

(bool) 如果成功,则为true;如果失败,则为false。



源码

查看源码 官方文档


更新日志

版本描述
3.0.0开始引入

使用示例

  • 示例1

    实例

    <?php register_taxonomy_for_object_type( 'category', 'page' ); ?> 
    
    
    
  • 示例2

    不要忘记使用init钩子来运行这个函数。如果没有,则可能尚未创建要引用的分类法和/或CPT。

    /**
     * Share taxonomy pdf-groups with posts
     *
     * @return void
     */
    function namespace_share_category_with_pages() {
    	register_taxonomy_for_object_type( 'category', 'page' );
    }
    
    add_action( 'init', 'namespace_share_category_with_pages' );