marstheme

Untitled

Jan 31st, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. if( ! function_exists( 'videotube_redirect_to_user_channel' ) ){
  2.     function videotube_redirect_to_user_channel() {
  3.    
  4.         $the_channel_page_id    =   ''; // the page ID goes here.
  5.        
  6.         if( is_user_logged_in() && is_page( $the_channel_page_id ) ){
  7.             wp_redirect( esc_url( get_author_posts_url( get_current_user_id() ) ) );
  8.             exit;
  9.         }
  10.     }
  11.     add_action( 'wp' , 'videotube_redirect_to_user_channel' );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment