Advertisement
verygoodplugins

Untitled

Mar 8th, 2021
1,032
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter('wpf_redirect_url', 'wpf_redirect_users', 10, 2);
  2. function wpf_redirect_users($redirect, $post_id) {
  3.     if(is_user_logged_in()) {
  4.         return $redirect;
  5.     } else {
  6.         return 'http://mysite.com/login';
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement