如何通過使用此代碼添加分類? 當我點擊新的分類,我得到一個錯誤自定義分類不工作在自定義後wordpress
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');
這是錯誤消息:
你不允許編輯這個項目。
waao .. !!它的工作很好......謝謝先生。 不同的代碼有什麼問題。 – user3060132
此錯誤代碼..?爲什麼.....。 '能力'=>數組( 'assign_terms'=> 'edit_guides', 'edit_terms'=> 'publish_guides' ) – user3060132
因爲你已經通過錯誤的參數,就可以使用像 '能力'=>數組( ' assign_terms'=>'edit_posts', 'edit_terms'=>'manage_categories' ) –