Skip to content

Instantly share code, notes, and snippets.

@timothyjensen
Last active June 4, 2018 11:12
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save timothyjensen/c8d8211effa8f098438700d828c21adb to your computer and use it in GitHub Desktop.
Use ACF local JSON file for get_all_custom_field_meta().
<?php
// Replace with the name of your field group JSON.
$field_group_json = 'group_59e226a200966.json';
$field_group_array = json_decode( file_get_contents( get_stylesheet_directory() . "/acf-json/{$field_group_json}" ), true );
// Omit this line when using the Field Group Values package/plugin.
$config = $field_group_array['fields'];
$meta_data = get_all_custom_field_meta( get_the_ID(), $config );
@leph83
Copy link

leph83 commented Nov 6, 2017

you might want to check if the file exists before decoding the json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment