Skip to content

Instantly share code, notes, and snippets.

@rileypaulsen
Created August 19, 2014 16:08
Show Gist options
  • Star 65 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save rileypaulsen/9b4505cdd0ac88d5ef51 to your computer and use it in GitHub Desktop.
Save rileypaulsen/9b4505cdd0ac88d5ef51 to your computer and use it in GitHub Desktop.
Add Advanced Custom Fields Fields to the WP REST API
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);
}
@albertoavv
Copy link

Thank you for your response, if what happens is that w5 is the name of the project or the root, but thanks for your response I will continue looking for a solution,

Regards

@DonDi1989
Copy link

DonDi1989 commented Jan 20, 2020

@mehmoodak thnx for your solution. Do you have any suggestion to specify only which ACF fields do you want to retrieve or not ?

@estebanmunchjones2019
Copy link

great contribution @rileypaulsen! thanks. it works

@gangesh
Copy link

gangesh commented Oct 29, 2020

Thanks @mehmoodak !

@ZeldOcarina
Copy link

Thank you so much @mehmoodak !

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