Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created March 24, 2016 19:13
Show Gist options
  • Save arkadiusjonczek/baa498726d92369fb423 to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/baa498726d92369fb423 to your computer and use it in GitHub Desktop.
WP REST API: add thumbnail to posts
function my_rest_prepare_post( $data, $post, $request ) {
$_data = $data->data;
$thumbnail_id = get_post_thumbnail_id( $post->ID );
$thumbnail = wp_get_attachment_image_src( $thumbnail_id );
$_data['featured_image_thumbnail_url'] = $thumbnail[0];
$data->data = $_data;
return $data;
}
add_filter( 'rest_prepare_post', 'my_rest_prepare_post', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment