Skip to content

Instantly share code, notes, and snippets.

@quinn
Created May 16, 2017 17:54
Show Gist options
  • Save quinn/8f6cdb8a3acd86aeff7181af124b0299 to your computer and use it in GitHub Desktop.
Save quinn/8f6cdb8a3acd86aeff7181af124b0299 to your computer and use it in GitHub Desktop.
add_action( 'rest_api_init', 'create_api_posts_meta_field' );
function create_api_posts_meta_field() {
register_rest_field( 'post', 'custom_fields', array(
'get_callback' => 'get_post_meta_for_api',
'schema' => null,
)
);
}
function get_post_meta_for_api( $object ) {
$post_id = $object['id'];
return get_post_meta( $post_id );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment