将所有自定义发布类型与分类相关联 时间:2012-06-11 作者:perpetualstudent 我有一个自定义的帖子类型imagery. 我有分类法publications. 我需要现在和未来imagery 帖子类型具有分类法publications. 下面是函数中代码的简化版本。php:$args = array( \'taxonomy\' => array(\'publications\') ); register_post_type( \'imagery\', $args ); 。。但它不起作用。我做错了什么? 1 个回复 SO网友:Fabien Quatravaux 您只是在要使用的密钥上犯了一个错误:它是taxonomies 不taxonomy.$args = array( \'taxonomies\' => array(\'publications\') ); register_post_type( \'imagery\', $args ); 结束 文章导航