ความสามารถและประเภทโพสต์ที่กำหนดเอง


30

ฉันมีประเภทโพสต์ที่กำหนดเองที่ฉันต้องการ จำกัด การเข้าถึงบทบาทบางอย่าง แต่ฉันได้เพิ่มเนื้อหาโดยใช้ประเภทโพสต์ที่กำหนดเองและตอนนี้ฉันต้องทำให้พวกเขาถูก จำกัด The ตี้ _type คือ 'โพสต์'

'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ซึ่งชี้ให้เห็นทรัพยากรที่มีประโยชน์จาก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');

ฉันหวังว่านี่จะเป็นประโยชน์กับคนอื่น ๆ


11
add_theme_caps()ควรเรียกเพียงครั้งเดียวเท่านั้นไม่ใช่ทุกครั้งที่มีการโหลดหน้าผู้ดูแลระบบ มันจะดีกว่าที่จะใช้switch_themeเป็นเบ็ดสำหรับการเปิดใช้งานชุดรูปแบบหรือการregister_activation_hookเปิดใช้งานปลั๊กอิน
d79

ดี! ฉันชอบที่จะใช้ wp cli เพื่อเพิ่มความสามารถถ้ามันเป็นไซต์ที่กำหนดเอง / ไม่เหมือนใครเพราะมันเป็นการกระทำที่ต้องเกิดขึ้นเพียงครั้งเดียว
squarecandy

8

เพิ่ม:

map_meta_cap => true

ไปยังอาร์เรย์ $ args ของคุณ ดูที่นี่สำหรับข้อมูลเพิ่มเติม หวังว่ามันจะช่วย!


1
นี่คือสิ่งที่ฉันคิด แต่ก็ไม่เป็นเช่นนั้นโดยสิ้นเชิง
erichmond

สิ่งนี้ใช้ได้ผลสำหรับฉัน
Shikyo

1

IMHO คุณไม่เคยทำแผนที่ความสามารถของคุณเอง ตรวจสอบให้แน่ใจว่าใช้ปลั๊กอิน meta cap ของแผนที่เพื่อทำเช่นนั้น 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.