Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created February 2, 2015 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BoweFrankema/decdbae7ee4be82dbc1d to your computer and use it in GitHub Desktop.
Save BoweFrankema/decdbae7ee4be82dbc1d to your computer and use it in GitHub Desktop.
BuddyPress Username Shortcode
<?php
// Output BuddyPress username through a shortcode
function cfc_bp_username ( $atts=null, $content=null ) {
global $user_ID;
if ( is_user_logged_in() ) {
return bp_core_get_username( $user_ID );
} else {
return "";
}
}
add_shortcode('cfc_bp_username','cfc_bp_username');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment