Support

Account

Home Forums General Issues Get all field values Reply To: Get all field values

  • Have you tried using the get_field_objects()?

    if you create a page with just the following code for the output, you can see array values for all the fields:

    $fields = get_field_objects($post_id);
    
    echo '<pre>';
    	print_r($fields);
    echo '</pre>';

    You should be able to get the information you need from there.