Skip to content

Instantly share code, notes, and snippets.

@ellefsen
Last active March 21, 2017 19:30
Show Gist options
  • Save ellefsen/aa21755248389a3c96ecfae02136025f to your computer and use it in GitHub Desktop.
Save ellefsen/aa21755248389a3c96ecfae02136025f to your computer and use it in GitHub Desktop.
Add ACF fields to WordPress Page Meta field
<?php
/**
* Add ACF to Post meta stuff.
*/
function my_rest_prepare_post( $data, $post, $request ) {
$data->data['meta'] = array_merge($data->data['meta'], get_fields($post->ID));
return $data;
}
add_filter( 'rest_prepare_page', 'my_rest_prepare_post', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment