Redirect after Login on WordPress

后端 未结 13 3040
我寻月下人不归
我寻月下人不归 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 12:13

    This should solve your problem. Adapted from an answer found here.

    Add the following snippet of code in the functions.php file of your theme:

    function admin_default_page() {
      return '/new-dashboard-url';
    }
    
    add_filter('login_redirect', 'admin_default_page');
    

提交回复
热议问题