dfactoryplugins / post-views-counter

Post Views Counter
56 stars 20 forks source link

Add to Rest API #20

Open codebider opened 6 years ago

codebider commented 6 years ago

Can we add number of view to REST API wp-json/wp/v2/posts

bartoszarendt commented 6 years ago

It's available in the separate request, but I think we can also extend the default post object.

codebider commented 6 years ago

yep. currently, i added this command line // Posts register_rest_field( 'post', 'number_of_views', array( 'get_callback' => array( $this, 'wp_api_number_of_views' ), 'schema' => null, ) );

jmslasso commented 2 years ago

It's available in the separate request, but I think we can also extend the default post object.

How it is available in separate request? Can you provide an example?