Last active
June 17, 2016 05:34
-
-
Save bacoords/1ea0a0bcc0f8f1c91e1420a1dbdd277b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Register Meta with Rest API | |
add_action( 'rest_api_init', 'prefix_register_custom_meta' ); | |
function prefix_register_custom_meta() { | |
register_rest_field( | |
'post', | |
'_prefix_url', | |
array( | |
'get_callback' => 'prefix_get_custom_meta', | |
'update_callback' => null, | |
'schema' => null, | |
) | |
); | |
register_rest_field( | |
'post', | |
'_prefix_email', | |
array( | |
'get_callback' => 'prefix_get_custom_meta', | |
'update_callback' => null, | |
'schema' => null, | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment