web-dev-qa-db-ja.com

Wordpressのcapability_type引数

自分のコードの問題点を見つけ出す方法がわからない、なぜカスタム投稿タイプ「Book」がダッシュボードに表示されないのか、管理者としてログインし、最新のWordPress 3.4.1を使う

ここに私のコードで

function codex_custom_init() {

  $labels = array(
    'name' => _x('Books', 'post type general name'),
    'singular_name' => _x('Book', 'post type singular name'),
    'add_new' => _x('Add New', 'book'),
    'add_new_item' => __('Add New Book'),
    'edit_item' => __('Edit Book'),
    'new_item' => __('New Book'),
    'all_items' => __('All Books'),
    'view_item' => __('View Book'),
    'search_items' => __('Search Books'),
    'not_found' =>  __('No books found'),
    'not_found_in_trash' => __('No books found in Trash'), 
    'parent_item_colon' => '',
    'menu_name' => __('Books')

  );

    $capabilities = array(
    'publish_posts' => 'publish_books',
    'edit_posts' => 'edit_books',
    'edit_others_posts' => 'edit_others_books',
    'delete_posts' => 'delete_books',
    'delete_others_posts' => 'delete_others_books',
    'read_private_posts' => 'read_private_books',
    'edit_post' => 'edit_book',
    'delete_post' => 'delete_book',
    'read_post' => 'read_book'
    );


  $args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true, 
    'show_in_menu' => true, 
    'query_var' => true,
    'rewrite' => true,
    'capability_type' => 'book',
    'capabilities' => $capabilities,
    'has_archive' => true, 
    'hierarchical' => false,
    'menu_position' => null,
    'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
  ); 

  register_post_type('book',$args);

}

add_action( 'init', 'codex_custom_init' );

私のコードは、 メンバープラグイン を使用するためのカスタム機能を持つ新しいカスタム投稿を追加することです。

2
Gerald

カスタム機能タイプのCPTは、スーパー管理者としてもデフォルトで表示されません。目的のユーザーロール(私の場合はlicensing-admin)のアクセス許可を手動で追加しても、うまくいきませんでした - 管理者の機能も手動で追加する必要があり、その後すべてがうまくいきました。

このコードを私のプラグインのアクティベーションフックに貼り付けてください。

$roles = array( get_role('licensing-admin'), get_role('administrator') );

foreach($roles as $role) {
  if($role) {
    $role->add_cap('edit_license');
    $role->add_cap('read_license');
    $role->add_cap('delete_license');
    $role->add_cap('edit_licenses');
    $role->add_cap('edit_others_licenses');
    $role->add_cap('publish_licenses');
    $role->add_cap('read_private_licenses');
    $role->add_cap('delete_licenses');
    $role->add_cap('delete_private_licenses');
    $role->add_cap('delete_published_licenses');
    $role->add_cap('delete_others_licenses');
    $role->add_cap('edit_private_licenses');
    $role->add_cap('edit_published_licenses');
  }
}
8
trans1t