Support

Account

Home Forums General Issues File field type: what is return value? Reply To: File field type: what is return value?

  • the difference is what you get when you use get_field

    try to look yourself

    $value = get_field('your_file_field_name');
    echo '<pre>';
    print_r( $value );
    echo '</pre>';

    it is either a ID, a URL, or a array that contains both and probably even more infos