要向WordPress的成员插件创建的新角色添加自定义帖子类型,您可以按照以下步骤进行操作:
function custom_post_type() {
$args = array(
'public' => true,
'label' => '产品',
'supports' => array( 'title', 'editor', 'thumbnail' ),
);
register_post_type( 'product', $args );
}
add_action( 'init', 'custom_post_type' );
function add_custom_post_type_capability() {
$role = get_role( 'member' );
$role->add_cap( 'edit_products' );
$role->add_cap( 'edit_others_products' );
$role->add_cap( 'publish_products' );
$role->add_cap( 'read_products' );
$role->add_cap( 'delete_products' );
}
add_action( 'admin_init', 'add_custom_post_type_capability' );
请注意,以上答案仅供参考,具体的实现方式可能因您使用的成员插件和主题而有所不同。建议您在操作前备份您的网站数据,并参考相关文档或向开发人员寻求帮助,以确保正确实施。
领取专属 10元无门槛券
手把手带您无忧上云