参数
- $taxonomy
-
(string)(必填) 分类法对象的名称。
- $object_type
-
(string)(必填) 对象类型的名称。
返回
(bool) 如果成功,则为true;如果失败,则为false。
源码
更新日志
版本 | 描述 |
---|---|
3.0.0 | 开始引入 |
使用示例
实例
<?php register_taxonomy_for_object_type( 'category', 'page' ); ?>
不要忘记使用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' );