Skip to content

Instantly share code, notes, and snippets.

@hatsumatsu
Last active August 19, 2016 06:55
Show Gist options
  • Save hatsumatsu/a686aae1eb68d383009493068efb9e98 to your computer and use it in GitHub Desktop.
Save hatsumatsu/a686aae1eb68d383009493068efb9e98 to your computer and use it in GitHub Desktop.
$tags = um_user( 'Musicstyles' );
if( $tags ) {
foreach( $tags as $tag ) {
$tag_object = get_term_by( 'id', $tag, 'um_user_tag' );
$url = 'https://resonate.is/musicians/?Musicstyles=' . $tag_object->slug;
$label = $tag_object->name;
if( $label ) {
echo '<a href="' . esc_url( $url ) . '">' . wptexturize( $label ) . '</a>';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment