我有一个自定义帖子类型,我想限制对某些角色的访问,但是,我已经使用该自定义帖子类型添加了内容,现在我必须限制它们。 capability_type是'post'

'capability_type' => 'post'


这很好,因为内容显示在后端,但是,现在,一旦我添加任何功能,内容就会从后端消失?

我尝试自定义功能类型以包括复数定义来构造自己的功能,但是一旦删除或更改功能类型,它就消失了! br />
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');


#1 楼

经过与Magicroundabout的快速聊天,后者指出了贾斯汀·塔德洛克(Justin Tadlock)的有用资源后,发现除非您对角色使用add_cap(例如以下自定义帖子类型),否则自定义帖子类型的功能实际上并不存在。 >
add_action( 'init', 'register_cpt_gallery' );

function register_cpt_gallery() {
$labels = array( 
    'name' => __( 'Galleries', 'gallery' ),
    'singular_name' => __( 'Gallery', 'gallery' ),
    'add_new' => __( 'Add New', 'gallery' ),
    'add_new_item' => __( 'Add New Gallery', 'gallery' ),
    'edit_item' => __( 'Edit Gallery', 'gallery' ),
    'new_item' => __( 'New Gallery', 'gallery' ),
    'view_item' => __( 'View Gallery', 'gallery' ),
    'search_items' => __( 'Search Galleries', 'gallery' ),
    'not_found' => __( 'No galleries found', 'gallery' ),
    'not_found_in_trash' => __( 'No galleries found in Trash', 'gallery' ),
    'parent_item_colon' => __( 'Parent Gallery:', 'gallery' ),
    'menu_name' => __( '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');


我希望这对其他人有用。

另外,_x()转换函数希望第二个参数是string $context,这是一个简短说明,而第三个则是string $domain。如果不提供描述,请改用__()转换函数,该函数将string $domain作为第二个参数。

评论


add_theme_caps()仅应调用一次,而不是每次加载管理页面时调用。最好将switch_theme用作主题激活的钩子,或将插件激活时使用register_activation_hook。

– d79
15年4月13日在10:42

真好!如果它是一个完全自定义/唯一的站点,我喜欢使用wp cli来添加功能,因为这是一个只需发生一次的操作。

– squarecandy
17年12月1日在1:56

#2 楼

添加:

map_meta_cap => true


到$ args数组中。看看这里,了解更多。
希望对您有所帮助!

评论


我也是这样,但并非完全如此。

–erichmond
13年7月30日在19:47

这对我有用

– Shikyo
18 Mar 27 '18 at 14:20

#3 楼

恕我直言,您永远不会映射自己的能力。请确保使用map meta cap插件来实现。只需安装该插件,绘制您的帽子,然后在工作后停用即可。如果要创建自定义角色,则将需要Member插件。

我测试以确保我的角色具有这些功能(有时您发誓会做,但实际上并没有这样做)来制作调试页面,方法是: />
    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;
        }
    }


这将向您显示实际上具有的功能。

#4 楼

对于自定义帖子类型,我不建议使用钩子:

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


,我建议使用:


评论


该建议是一个好建议,但不能回答问题。

–Aurovrata
19年11月11日在8:06