We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Custom Fields Reply To: Custom Fields

#13058
Tom
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>';
        }
    }