Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created November 10, 2017 16:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdcauley/942f6b75402670ceadc7b0196a4adfd2 to your computer and use it in GitHub Desktop.
Save jdcauley/942f6b75402670ceadc7b0196a4adfd2 to your computer and use it in GitHub Desktop.
function api_featured_images( $post ) {
$field = get_post_meta($post['id'], 'field_id', true);
return $field;
}
add_action('rest_api_init', function() {
register_rest_field( 'post, 'field_name', array(
'get_callback' => 'your_field_function'
));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment