Skip to content

Instantly share code, notes, and snippets.

@nandomoreirame
Created March 21, 2018 17:51
Show Gist options
  • Select an option

  • Save nandomoreirame/c0eab794adb6d4b1b20f472dbed4c3c1 to your computer and use it in GitHub Desktop.

Select an option

Save nandomoreirame/c0eab794adb6d4b1b20f472dbed4c3c1 to your computer and use it in GitHub Desktop.
WordPress API get Post Comment
<?php
add_action( 'rest_api_init', 'theme_register_rest_fields' );
function theme_register_rest_fields() {
register_rest_field( 'post', 'comments', array(
'get_callback' => 'theme_get_post_comments',
'update_callback' => null,
'schema' => null
));
}
function theme_get_post_comments ( $object, $field_name, $request ) {
return get_comments( array( 'post_id' => $object[ 'id' ] ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment