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
If you have php 5.3+, you can use an anonymous function like so:
add_filter( 'login_redirect', function() { return site_url('news'); } );