Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created July 4, 2023 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfsarmento/4422e5d7a7060d8169b1554c94cbea80 to your computer and use it in GitHub Desktop.
Save nfsarmento/4422e5d7a7060d8169b1554c94cbea80 to your computer and use it in GitHub Desktop.
Shortcode to show parent category
<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