Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created February 19, 2019 22:59
Show Gist options
  • Save KaineLabs/cb955707842834e23a2ed140aa835d59 to your computer and use it in GitHub Desktop.
Save KaineLabs/cb955707842834e23a2ed140aa835d59 to your computer and use it in GitHub Desktop.
Open Profile Page In A New Tab.
<?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