wordpress后台都是默认显示所有用户的文章及媒体文件,这样就会导致大家也可以查看其它用户的文章及媒体文件,这时候就有人问WordPress网站如何实现后台只显示当前用户的文章和媒体?接下来为大家分享一下。
WordPress网站如何实现后台只显示当前用户的文章和媒体? (https://www.wpzt.net/) WordPress开发教程 第1张
将下面的代码添加到当前主题的 functions.php 文件即可:

//仅显示当前用户的文章、媒体文件https:

add_action( 'init', 'check_user_role' );

function check_user_role() {

global $current_user;

if( $current_user->roles[0] != 'administrator' ) {

//在[媒体库]只显示用户上传的文件

add_action('pre_get_posts','MBT_restrict_media_library');

function MBT_restrict_media_library( $wp_query_obj ) {

global $current_user, $pagenow;

if( !is_a( $current_user, 'WP_User') )

return;

if( 'admin-ajax.php' != $pagenow || $_REQUEST['action'] != 'query-attachments' )

return;

if( !current_user_can('manage_media_library') )

$wp_query_obj->set('author', $current_user->ID );

return;

}

}

}