Skip to content

Instantly share code, notes, and snippets.

@bacoords
Last active June 17, 2016 05:34
Show Gist options
  • Save bacoords/29897b25c7e26e268ecd8b43a67a82bb to your computer and use it in GitHub Desktop.
Save bacoords/29897b25c7e26e268ecd8b43a67a82bb to your computer and use it in GitHub Desktop.
/**
* Retrieve custom meta for use in the REST API
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
function prefix_get_custom_meta( $object, $field_name, $request ) {
return get_post_meta( $object[ 'id' ], $field_name, true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment