Wordpress限制编辑,但允许预览自定义帖子状态

时间:2013-05-06 14:33:34

标签: wordpress post edit status preview

我正在使用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 );

那么有什么方法可以限制编辑功能,但允许预览?

1 个答案:

答案 0 :(得分:1)

您可以使用' posts_results'过滤到"改变"您的帖子状态为'发布'仅适用于具有良好角色的预览和管理员:(更改未被保存)

add_filter( 'posts_results', array( get_class(), 'change_post' ), 10, 2 );

public static function change_post( $posts ) {


    if ( empty( $posts )) {
        return;
    }

    if(!empty($_GET['preview'])){

        if($_GET['preview'] == true){
            if(current_user_can('preview_your_post_type')){
                $post_id = $posts[0]->ID;
                $post_type = $posts[0]->post_type;
                $posts[0]->post_status = 'publish';
            }
        }
    }

    return $posts;
}