Created
February 19, 2019 22:59
-
-
Save KaineLabs/cb955707842834e23a2ed140aa835d59 to your computer and use it in GitHub Desktop.
Open Profile Page In A New Tab.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Open Profile Page In A New Tab. | |
*/ | |
function yzc_open_profile_page_in_new_tab() { | |
if ( ! bp_is_user() ) { | |
return; | |
} | |
// Put Here Nav Slug. | |
$nav_slug = 'wall'; | |
?> | |
<script type="text/javascript"> | |
jQuery( '.yz-navbar-item a[href*="/<?php echo $nav_slug; ?>"]').attr( 'target', '_blank' ); | |
</script> | |
<?php | |
} | |
add_action( 'wp_footer', 'yzc_open_profile_page_in_new_tab' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment