Last active
January 31, 2019 01:05
-
-
Save gugaalves/15d946a92b2b98197a8b9646b0ce1ccc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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