您必须为挂钩编写一个小插件pre_get_posts
; 例如:
add_action( \'pre_get_posts\', \'fb_allow_draft\' );
function fb_allow_draft( $query_obj ) {
// only on admin screen use this filter
if( ! is_admin() )
return;
// change our query object to include any post status
$query_obj->query_vars[\'post_status\'] = \'any\';
}
如果要从角色中为权限对象指定此新循环,请使用以下小问题:
if ( ! current_user_can( \'read\' ) ) return;