機能とカスタム投稿タイプ


30

特定の役割へのアクセスを制限したいカスタム投稿タイプがありますが、カスタム投稿タイプを使用してコンテンツをすでに追加しているので、制限する必要があります。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');

回答:


40

クイックチャット後Magicroundaboutから有用な資源指摘ジャスティンTadlockを、それはあなたが次のカスタムポストタイプのために、たとえば、ロールにadd_capを使用しない限り、カスタムポストタイプのための機能が実際に存在していないことが判明します:

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,
    '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'
    ),
    // as pointed out by iEmanuele, adding map_meta_cap will map the meta correctly 
    'map_meta_cap' => true
);

register_post_type( 'gallery', $args );
}

「管理者」を含む、バックエンドで実際に機能する権限のロールに追加機能を追加する必要があります。例:

function add_theme_caps() {
    // gets the administrator role
    $admins = get_role( 'administrator' );

    $admins->add_cap( 'edit_gallery' ); 
    $admins->add_cap( 'edit_galleries' ); 
    $admins->add_cap( 'edit_other_galleries' ); 
    $admins->add_cap( 'publish_galleries' ); 
    $admins->add_cap( 'read_gallery' ); 
    $admins->add_cap( 'read_private_galleries' ); 
    $admins->add_cap( 'delete_gallery' ); 
}
add_action( 'admin_init', 'add_theme_caps');

これが他の人に役立つことを願っています。


11
add_theme_caps()管理ページがロードされるたびに呼び出されるのではなく、1回だけ呼び出される必要があります。switch_themeテーマのアクティベーションのフックとして、またはregister_activation_hookプラグインのアクティベーションで使用する方が良いでしょう。
d79

いいね!完全にカスタム/ユニークなサイトである場合、機能を追加するためにwp cliを使用するのが好きです。これは、一度だけ実行する必要があるアクションだからです。
squarecandy


1

私見では、自分の能力をマッピングすることはありません。そのためには、必ずマップメタキャッププラグインを使用してください。 http://codex.wordpress.org/Function_Reference/map_meta_cap

私はカスタムキャップをコードで手動でマッピングしようとして何日も費やしました。そのプラグインをインストールし、キャップをマップし、動作したら無効にします。カスタムロールを作成する場合は、メンバープラグインが必要になります。

私が自分の役割にこれらの能力があることを確認するためにテストする方法(実際にそうしないと誓うこともある)は、次のようなデバッグページを作成します。

    if( !function_exists( 'current_user_has_role' ) ){
        function current_user_has_role( $role ){
            $current_user = new WP_User( wp_get_current_user()->ID );
            $user_roles = $current_user->roles;
            $is_or_not = in_array( $role, $user_roles );
            return $is_or_not;
        }
    }

これにより、実際に実行する機能が表示されます。


-1

カスタム投稿タイプの場合、フックを使用することはお勧めしません

add_action( 'registered_post_type', 'your_func', 10, 2 );

代わりに使用することをお勧めします:

add_filter( 'register_post_type_args', 'your_func', 10, 2 );
function your_func( $args, $name ) 
{
   if ( $name == "your_custom_post_name" ) 
   ...
}

提案は良いものですが、質問には答えません。
Aurovrata
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.