我正在开发一个带有 Edit Flow 插件的 Wordpress 站点,因此我可以创建自定义帖子状态来更轻松地管理作者和贡献者的帖子。
因此,我创建了自定义帖子状态,并获得了以下过滤器来限制该帖子的编辑功能。它工作正常,但问题是用户(管理员除外)无法预览帖子。其他用户仍然可以在仪表板帖子列表中看到“预览”链接,但如果他们点击它并转到帖子预览页面 (../post-with-custom-status/?preview=true),它会说帖子可以'找不到。
function restrict_edit_custom_status_posts( $allcaps, $cap, $args ) {
// Bail out if we're not asking to edit a post ...
if( 'edit_post' != $args[0]
// ... or user is admin
|| !empty( $allcaps['manage_options'] )
// ... or user already cannot edit the post
|| empty( $allcaps['edit_posts'] ))
return $allcaps;
// Load the post data:
$post = get_post( $args[2] );
// If post have custom status
if( 'my_custom_status' == $post->post_status ) {
// Then disallow editing
$allcaps["edit_posts"] = FALSE;
return $allcaps;
}
return $allcaps;
}
add_filter( 'user_has_cap', restrict_edit_custom_status_posts10, 3 );
那么有什么方法可以限制编辑功能,但允许预览?