Skip to content

Instantly share code, notes, and snippets.

@gugaalves
Last active January 31, 2019 01:05
Show Gist options
  • Save gugaalves/15d946a92b2b98197a8b9646b0ce1ccc to your computer and use it in GitHub Desktop.
Save gugaalves/15d946a92b2b98197a8b9646b0ce1ccc to your computer and use it in GitHub Desktop.
// Add Shortcode
function button_category($post_id) {
$category = get_the_category( $post_id );
$return = '<a href="'. esc_url( get_category_link( $category[0]->term_id ) ) .'">Ver ' . $category[0]->cat_name . '</a>';
return $return;
}
add_shortcode( 'button-category', 'button_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment