是的,这是可能的。将以下内容添加到插件代码或主题函数中。php文件:
function mypo_parse_query_useronly( $wp_query ) {
if ( strpos( $_SERVER[ \'REQUEST_URI\' ], \'/wp-admin/edit.php\' ) !== false ) {
if ( !current_user_can( \'update_core\' ) ) {
global $current_user;
$wp_query->set( \'author\', $current_user->id );
}
}
}
add_filter(\'parse_query\', \'mypo_parse_query_useronly\' );
参考原始源
here这将限制显示的帖子仅限于每个作者自己的帖子。