Home › Forums › Pro Support › Custom Fields › Reply To: Custom Fields
January 30, 2020 at 8:28 pm
#13058
Keymaster
You’re welcome, Gwen! Hope you’re feeling better 🙂
Cris – that’s close, try this:
$terms = get_terms( ( array('taxonomy' => 'post_tag', 'hide_empty' => false,)));
if ( isset( $terms ) && '' !== $terms ) {
foreach( $terms as $term ) {
echo '<div class="tax referencia">';
echo $term->name;
echo '</div>';
}
}