Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DeveloperWil/45424dddd24a853e25833b3800f471a9 to your computer and use it in GitHub Desktop.

Select an option

Save DeveloperWil/45424dddd24a853e25833b3800f471a9 to your computer and use it in GitHub Desktop.
Client WP Dashboard Makeover Blueprint: Redirect to Custom Dashboard
add_filter('login_redirect', function($r, $rq, $u) {
if (in_array('editor', $u->roles)) {
return admin_url('index.php?page=client-dashboard');
}
return $r;
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment