我可以通过传递我想要共享分类法的所有自定义帖子类型的数组轻松实现这一点,因此我的代码如下所示:
add_action( \'init\', \'build_taxonomies\', 0 );
function build_taxonomies() {
register_taxonomy( \'some_custom_tax\', array(\'some_post_type_1\',\'some_post_type_2\'), array( \'hierarchical\' => true, \'label\' => \'Custom Tax Title\', \'query_var\' => true, \'rewrite\' => true ) );
}