-
-
Save monecchi/5e5651e8159a4a2ae54d1891a1339d59 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