Redirect non-admins to the homepage after logging into the site

<?php /** * Redirect non-admins to the homepage after logging into the site. */ function easy_login_redirect( $redirect_to, $request, $user ) { return ( is_array( $user->roles ) && in_array( 'administrator', $user->roles ) ) ? admin_url() : site_url(); } add_filter( 'login_redirect', 'easy_login_redirect', 10, 3 );

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.