我目前正在尝试设置重定向,以便将我的管理员用户重定向到wordpress管理员界面中仪表板以外的页面。
如果我省略了我的条件,重定向会起作用,但它也会重定向非管理员用户,我不希望这样。
这是我在函数中的代码。php
add_filter(\'login_redirect\', \'dashboard_redirect\');
function dashboard_redirect($url) {
global $current_user;
get_currentuserinfo();
$level = (int) $current_user->wp_user_level;
if ( $level > 10 ) {
$url = \'wp-admin/edit.php\';
}
return $url;
}