1

我正在开发一个带有 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 );

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

4

1 回答 1

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;
}
于 2014-09-17T10:34:47.353 回答