Created
July 4, 2023 19:45
-
-
Save nfsarmento/4422e5d7a7060d8169b1554c94cbea80 to your computer and use it in GitHub Desktop.
Shortcode to show parent category
This file contains 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
<php | |
/** | |
* | |
* Shortcode to show parent category | |
* | |
* [postcat] | |
* | |
*/ | |
function ns_post_cat_shortcode(){ | |
$first_term_name = get_the_terms( $post->ID, 'category' )[0]->name; | |
return $first_term_name; | |
} | |
add_shortcode( 'postcat', 'ns_post_cat_shortcode' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment