web-dev-qa-db-ja.com

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

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

Magicroundabout との簡単なチャットの後で Justin 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');

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

36
erichmond

追加:

map_meta_cap => true

あなたの$ args配列に。見て ここ 、もっと。それが役に立てば幸い!

7
iEmanuele

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

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

私がテストする方法は私の役割がそれらの能力を持っていることを確かめるために(時にはあなたがあなたがそうすると誓うが実際にはしない)デバッグページを作る:

    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
Ben Racicot

カスタム投稿タイプの場合、I DON'T はフックの使用を推奨しません。

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" ) 
   ...
}
0
T.Todua