Advertisement
GochiSiyan

term

Sep 12th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $term_list = wp_get_post_terms( get_the_ID(), 'ubicaciones' );
  3. $the_term = '';
  4. if ( ! empty( $term_list ) ) {
  5. ob_start();
  6. ?>
  7. <h3>
  8. <?=$term_list[0]->name?>
  9. </h3>
  10. <?php
  11. $the_term = ob_get_clean();
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement