Support

Account

Home Forums General Issues Get value from taxonomy field in wp-loop Reply To: Get value from taxonomy field in wp-loop

  • A taxonomy field will return an array of terms even if it can only have one term.

    What is being output by your code?

    You can try this to see what is being returned

    
    $term = get_field('kategorie'); 
    echo '<pre>'; print_r($term); echo '</pre>';