Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save monecchi/7f7a6c0b031e24aa0c2d648e99e6c20f to your computer and use it in GitHub Desktop.
Save monecchi/7f7a6c0b031e24aa0c2d648e99e6c20f 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