Skip to content

Instantly share code, notes, and snippets.

@jayontraps
Forked from rileypaulsen/functions.php
Last active August 29, 2015 14:19
Show Gist options
  • Save jayontraps/0f8e210e5313c99bee95 to your computer and use it in GitHub Desktop.
Save jayontraps/0f8e210e5313c99bee95 to your computer and use it in GitHub Desktop.
function wp_api_encode_acf($data,$post,$context){
$data['meta'] = array_merge($data['meta'],get_fields($post['ID']));
return $data;
}
if( function_exists('get_fields') ){
add_filter('json_prepare_post', 'wp_api_encode_acf', 10, 3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment