Skip to content

Instantly share code, notes, and snippets.

@wolfcoder
Created April 23, 2022 22:22
Show Gist options
  • Save wolfcoder/f6896ce10da7a0ae29ae4fbe857a7796 to your computer and use it in GitHub Desktop.
Save wolfcoder/f6896ce10da7a0ae29ae4fbe857a7796 to your computer and use it in GitHub Desktop.
function wpenginer_custom_rest(){
register_rest_field('post', 'authorName', array(
'get_callback' => function() {return get_the_author();}
));
}
add_action('rest_api_init', 'wpenginer_custom_rest');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment