参考获得的文件add_meta_box
,
// Check permissions
if ( \'page\' == $_POST[\'post_type\'] ) {
if ( !current_user_can( \'edit_page\', $post_id ) )
return;
} else {
if ( !current_user_can( \'edit_post\', $post_id ) )
return;
}
}
如果我想对编辑自定义帖子类型“公文包”的用户进行身份验证,我是否执行以下操作
if ($_POST[\'post_type\'] != \'portfolio\' || !current_user_can_for_blog($post_id, \'edit_post\'))
return;