【发布时间】:2013-12-10 12:35:14
【问题描述】:
如何使用此代码添加分类? 当我点击新分类时,我得到一个错误
function people_init() {
// create a new taxonomy
register_taxonomy(
'people',
'new_post',
array(
'label' => __( 'People' ),
'rewrite' => array( 'slug' => 'person' ),
'capabilities' => array(
'assign_terms' => 'edit_guides',
'edit_terms' => 'publish_guides'
)
)
);
}add_action( 'init', 'people_init' );
这是错误信息:
您无权编辑此项目。
【问题讨论】:
标签: php wordpress custom-post-type