Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto

Roy-Oto/term.php Secret

Created April 29, 2021 01:24
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 Roy-Oto/ab8842f23393822529e380a3040b9983 to your computer and use it in GitHub Desktop.
Save Roy-Oto/ab8842f23393822529e380a3040b9983 to your computer and use it in GitHub Desktop.
To display Term in Custom Field Suite.
<?php
$values = CFS()->get( 'field_terms' );
foreach ( $values as $term_id ) {
$the_term = get_term($term_id);
echo $the_term->name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment