Echo post meta tags shortcode.
beans_post_meta_tags_shortcode( )
Return: (void)
Source
function beans_post_meta_tags_shortcode() {
$tags = get_the_tag_list( null, ', ' );
if ( ! $tags || is_wp_error( $tags ) ) {
return;
}
printf( '%1$s%2$s', beans_output( 'beans_post_meta_tags_prefix', __( 'Tagged with: ', 'tm-beans' ) ), $tags );
}