Support

Account

Home Forums Front-end Issues Array WP_Error trying to get ACF taxonomy value Reply To: Array WP_Error trying to get ACF taxonomy value

  • Hi @udapud

    Instead of using


    $term = $terms[0];

    Can you try

    
    $term = array_pop($terms);
    

    Does that fix the issue?