How to make wp_redirect open in a new tab
-
Here is my custom redirect function.
add_action('wp', 'myRedirectFunction'); function myRedirectFunction(){ if( is_page('sign-up')&&(is_user_logged_in()) ){ wp_redirect( 'https://www.anothersite.com' ); } }
HOW can I make it redirect to a new browser tab?
- The topic ‘How to make wp_redirect open in a new tab’ is closed to new replies.