Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter( 'parse_query', 'redirect_user' );
  2.  
  3. function redirect_user($query) {
  4. $user_id = get_current_user_id();
  5.  
  6. if (strlen($user_id) <> 1)
  7. global $pagenow,$post_type;
  8. if (is_admin() && $pagenow=='options-general.php' && $post_type =='page') {
  9. if ($post_type == "updraftplus") {
  10. wp_redirect( home_url() );
  11. }
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement