Support

Account

Home Forums Bug Reports Load & Save Terms to Post option broken Reply To: Load & Save Terms to Post option broken

  • One way around it is to use this code which just extracts it directly rather than through ACF:

    < ?php
    
    $terms = get_the_terms( $post->ID , 'taxonomyname' );
    
    foreach ( $terms as $term ) {
    
    echo $term->name;
    
    }
    
    ?>