Redirect after Login on WordPress

后端 未结 13 3034
我寻月下人不归
我寻月下人不归 2020-12-04 11:26

I\'m creating a customized WordPress theme based on an existing site.

I want to use an alternate dashboard which I have created.

How can I have the user dire

13条回答
  •  悲哀的现实
    2020-12-04 11:49

    add_action('wp_head','redirect_admin');
    function redirect_admin(){
      if(is_admin()){
        wp_redirect(WP_HOME.'/news.php');
        die; // You have to die here
      }
    }
    

    Or if you only want to redirect other users:

    add_action('wp_head','redirect_admin');
    function redirect_admin(){
      if(is_admin()&&!current_user_can('level_10')){
        wp_redirect(WP_HOME.'/news.php');
        die; // You have to die here
      }
    }
    

提交回复
热议问题