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
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');