Advertisement
phpface

Untitled

Mar 31st, 2021
1,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function videotube_redirect_login_page(){
  2.  
  3.     // an array of page IDs
  4.     $page_ids = array( 64 );
  5.  
  6.     if( ! is_user_logged_in() && is_page() && in_array( get_the_ID() , $page_ids ) ){
  7.         wp_redirect( wp_login_url( home_url('/') ) );
  8.         exit;
  9.     }
  10. }
  11. add_action( 'wp', 'videotube_redirect_login_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement