特定の役割へのアクセスを制限したいカスタム投稿タイプがありますが、カスタム投稿タイプを使用してコンテンツをすでに追加しているので、制限する必要があります。capability_typeは 'post'でした
'capability_type' => 'post'
ただし、コンテンツがバックエンドに表示されるのでどちらがいいですか。機能を追加するとすぐに、コンテンツはバックエンドから消えますか?
複数の定義を含むように機能タイプをカスタマイズして独自の構成を試みましたが、機能タイプを削除または変更するとすぐに消えてしまいます!
完全なコード:
add_action( 'init', 'register_cpt_gallery' );
function register_cpt_gallery() {
$labels = array(
'name' => _x( 'Galleries', 'gallery' ),
'singular_name' => _x( 'Gallery', 'gallery' ),
'add_new' => _x( 'Add New', 'gallery' ),
'add_new_item' => _x( 'Add New Gallery', 'gallery' ),
'edit_item' => _x( 'Edit Gallery', 'gallery' ),
'new_item' => _x( 'New Gallery', 'gallery' ),
'view_item' => _x( 'View Gallery', 'gallery' ),
'search_items' => _x( 'Search Galleries', 'gallery' ),
'not_found' => _x( 'No galleries found', 'gallery' ),
'not_found_in_trash' => _x( 'No galleries found in Trash', 'gallery' ),
'parent_item_colon' => _x( 'Parent Gallery:', 'gallery' ),
'menu_name' => _x( 'Galleries', 'gallery' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'description' => 'Image galleries for teachers classes',
'supports' => array( 'title', 'editor', 'author'),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_icon' => get_bloginfo('template_url') . '/images/imagegallery.png',
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => true,
'capability_type' => 'post',
'capabilities' => array(
'edit_post' => 'edit_gallery',
'edit_posts' => 'edit_galleries',
'edit_others_posts' => 'edit_other_galleries',
'publish_posts' => 'publish_galleries',
'read_post' => 'read_gallery',
'read_private_posts' => 'read_private_galleries',
'delete_post' => 'delete_gallery'
)
);
register_post_type( 'gallery', $args );
}
また、完全に新しいカスタム投稿タイプでこれをテストしました。機能タイプに関係なく、たとえば削除してカスタム投稿を追加しても同じ問題が発生します。
'capability_type' => array('movie','movies');
add_theme_caps()
管理ページがロードされるたびに呼び出されるのではなく、1回だけ呼び出される必要があります。switch_theme
テーマのアクティベーションのフックとして、またはregister_activation_hook
プラグインのアクティベーションで使用する方が良いでしょう。