You can simply check if the user has an specific role, and redirect them to homepage if they try to access the admin panel.
function redirect_to_front(){
// Check if we are on the admin panel, and the user is not an admin
if( is_admin() && !current_user_can( 'administrator' ) ){
// Redirect them back to front
wp_safe_redirect( site_url() );
exit();
}
}
add_action('init', 'redirect_to_front');
This is just an example. You should alter the code, and change the capabilities to fit your purpose. The current_user_can()
function accepts both capability and roles.
Related Posts:
- How to keep track of user logins?
- My custom page template with is_user_logged_in() does not detect that I’m logged in
- Replacing the WordPress password validation
- WordPress auto login after registration not working
- Allow up to 5 Concurrent Login Sessions
- Why does is_user_logged_in() return false after redirect from another site?
- Pre-populate Username Field
- Get user info outside WordPress
- How can I secure a WordPress blog using OpenID from a single provider?
- Is it possible to get a user with just the password field?
- Redirect after login based on user role (custom login page)
- Check for user meta data at Login
- Redirect User to Homepage if no other redirect is specified
- Use phpbb user database for WordPress
- WordPress to use Drupal users’ credentials
- Best way to have an per-user customized private section
- Share user table from WP with Drupal
- How can I allow password reset based on logins containing the @ character?
- A way to count logged in users and display count?
- stop login if user_status equal zero
- Redirect user to login before viewing custom post
- Change the user_login at registration
- Max no of simultaneous active sessions for a single user
- When I try to login in wordpress it is showing “USER Doesn’t Exists”
- Should I encrypt the response that triggers an Ajax action? Is nonce sufficient?
- Redirect subscribers to last viewed page after log-in
- wordpress disable login for unverified user
- Reset Password policy
- Rewrite Rules and Login Issue
- Is possible to allow user to login with different role?
- Use WordPress Login for a non-wordpress site
- WordPress Login Customization for External Authentication
- Does wordpress support natively the concept of logging-in users? (not admins, but users of the website)
- Is there any action /filter hook I can use to disable login for some user role?
- How to check User Role and redirect to specific page according to Role when login in WordPress?
- Display video on homepage for users who have not logged in
- How do you manage your pages or functions that require logged-in users?
- How can i login with user’s password in WordPress being an admin?
- Delete a user from frontend
- Check if user is logged in via JS? [duplicate]
- Use members from 1 site on another one
- Can I edit the database to change a login?
- how redirect users to custom login page when “login to reply” is clicked? [duplicate]
- User(s) already exists show error please provide a valid username
- wp_generate_password sets password but can’t login using created password
- add class to element if user is not logged in [closed]
- Is there a way to call via javascript if a user is logged-in on a static html file?
- Restricting wordpress login sessions for a web app
- How to connect wordpress user with my own APP user?
- How to change default username field after login
- The same session information for peer users on two different WordPress servers
- WP users cant reset password
- Check for empty username or password on login
- $user_login is not working if author has only 1 post
- Specific Content on pages based on user
- user and usermeta table not found
- custom login form, guide me
- Front end login and page restriction
- Changing user_login ends current session
- Current User Seeing Another Logged In User Info
- Privacy in WordPress
- Redirect based on log-in status per JavaScript
- Securely log in a user without a password using a link?
- Integrating Facebook Registration (and Login) on a WordPress page
- WordPress – Security Question at Login from User’s Meta Data
- determine active user browser at the same time
- How to track all users logged into a site?
- Cant edit profile from frontend
- How to authenticate/verify login credentials & check for user meta without logging in?
- Will users still be able to log in if I change host?
- redirect to my login page if not logged in
- If the current user is an administrator or editor
- Editor can create any new user except administrator
- How do I add a field on the Users profile? For example, country, age etc
- How do I display logged-in username IF logged-in?
- How to allow an user role to create a new user under a role which lower than his level only?
- user_login vs. user_nicename
- How to programatically change username (user_login)?
- Change the Author Slug from Username to Nickname
- Remove Ability for Other Users to View Administrator in User List?
- Difference between update_user_meta and update_user_option
- Make display name unique
- Make WooCommerce pages accessible for logged in users only
- Find out if logged in user is not subscriber
- WordPress usermeta scaling for thousands of users
- How to get WordPress Username in Array format
- Display user registration date
- Is there a is_user_logged_in() for multisite?
- Get multiple roles with get_users
- get_user_meta() doesn’t include user email?
- Confirmation required on email change
- How to Merge Two Authors Into One?
- Whats the best way to share user data across multiple WordPress websites?
- get_current_user_id() returns 0?
- How do I require authorization / login to view a specific set of posts / pages?
- How to get userid at wp_logout action hook?
- Groups of capabilities: users with multiple roles?
- Is there a way to merge two users?
- User-edit role setting distinct from wp_capabilities? [closed]
- List users by last name in WP_User_Query