This snippet will help you to redirect a WordPress user after login, based on the user role.

Instruction
Add this code to your functions.php file.

<?php
   function redirect_user_on_role() {
      //retrieve current user info 
      global $current_user;
      get_currentuserinfo();
      //If login user role is Subscriber
      if ($current_user->user_level == 0) { wp_redirect( home_url() ); exit; }
      //If login user role is Contributor
      else if ($current_user->user_level > 1) { wp_redirect( home_url() ); exit; }
      //If login user role is Editor
      else if ($current_user->user_level >8) { wp_redirect( home_url() ); exit; }
      // For other rolse 
      else {
         $redirect_to = 'http://google.com/';
         return $redirect_to;
      }
   }
   add_action('admin_init','redirect_user_on_role');
?>

Related links
http://codex.wordpress.org/Roles_and_Capabilities

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

This could be the beginning of something great 🙌

"*" indicates required fields

Name*
Hidden
Hidden

By submitting this form: You agree to the processing of the submitted data in accordance with WP Dynamics Privacy Policy.

Contact Information
You can also write us an email or contact us by telephone.
Telephone +45 71 74 71 21

Support For support inquiries, please refer to our support section.

Recent Articles

Faust.js – A Headless Framework for WordPress

Faust.js is a Headless WordPress Framework that provides a set of tools for building front-end applications based on WordPress ...

How to Load (Enqueue) and Handle Assets and Dependencies in WordPress

In WordPress, instead of adding assets such as styles and JavaScript to the header, you can and should use ...

An Introduction to Google Tag Manager Server-side Tagging

WordPress has come a long way since its launch in 2003 - from a blogging tool to a full-fledge ...