Viewing 1 replies (of 1 total)
  • There are several redirect plugins available. I use Peter’s Login Redirect on several sites.

    If you don’t want to use a plugin, here is some sample code for simple redirects. Place it in your theme’s functions.php file:

    function plugin_admin_redirect($redirect_to, $url_redirect_to = '', $user = null) {
        // return home_url('/wp-admin/');  // to Dashboard
        return home_url();  // to Home page
    }
    add_filter('login_redirect', 'plugin_admin_redirect');
Viewing 1 replies (of 1 total)

The topic ‘Log In Redirect’ is closed to new replies.