Issue
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 directed to 'news.php
' after login instead of '/wp-admin/
' ?
--
EDIT: Have a working Plug-in for this but the bounty is still availible for anyone who can find a manual way to do this through functions.php, as it would be more secure then using a 3rd party plug-in.
Solution
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');
Answered By - Travis
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.