一、禁止默认注册用户角色访问后台
默认注册用户角色:WordPress后台 → 设置 → 常规,设置新用户注册默认角色中的角色。打开wordpress的核心函数文件functions.php,将下面这段代码插入到functions.php文件中。
function qzl_redirect_wp_admin()
{ if ( is_admin() && !current_user_can('editor') && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) { $current_user = wp_get_current_user(); if($current_user->roles[0] == get_option('default_role')) { wp_safe_redirect(home_url()); exit(); } } } add_action('init', 'qzl_redirect_wp_admin'); |
二、只允许管理员,编辑和作者角色访问后台
将以下代码添加到当前主题函数模板functions.php文件中
add_action('init', 'qzl_redirect_wp_admin');
function qzl_redirect_wp_admin() { if (is_admin() && is_user_logged_in() && !current_user_can('manage_options') && !current_user_can('publish_pages') && !current_user_can('publish_posts') && (!defined('DOING_AJAX') || !DOING_AJAX)) { wp_safe_redirect(home_url()); exit; } } |
判断当前用户是否登录以及当前用户角色,禁止访问后台的的用户将直接跳转到网站首页。如果需要跳转到指定的页面链接,可以将wp_safe_redirect(home_url())修改为如下类似的链接:
wp_safe_redirect('http://www.sjzphp.com');
|
如果只允许管理员访问后台,可以将其中允许编辑和作者访问后台的代码删除:
&& !current_user_can('publish_pages') && !current_user_can('publish_posts')
|
转载请注明来源网址:青锋建站-http://www.sjzphp.com/kaifazhe/wordpress/jinzhihoutai_1567.html