Redirect after Login on WordPress

后端 未结 13 3031
我寻月下人不归
我寻月下人不归 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条回答
  •  -上瘾入骨i
    2020-12-04 11:57

    If you have php 5.3+, you can use an anonymous function like so:

    add_filter( 'login_redirect', function() { return site_url('news'); } );
    

提交回复
热议问题