Advertisement
phpface

Untitled

Nov 27th, 2022 (edited)
886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_action( 'wp', function(){
  2.     if( (is_author() || is_singular( 'video' ) ) && ! is_user_logged_in() ){
  3.         wp_redirect( wp_login_url( get_author_posts_url( get_queried_object_id() ) ) );
  4.         exit;
  5.     }
  6. }, 1 );
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement