Title: slideshow feed for wordpress restful-api
Last modified: December 31, 2018

---

# slideshow feed for wordpress restful-api

 *  Resolved [cgtv](https://wordpress.org/support/users/cgtv/)
 * (@cgtv)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/slideshow-feed-for-wordpress-restful-api/)
 * Hi There,
    we use metaslider plugin and thanks for that amazing plugin. we working
   on Android app for our website and we need to access the slide image and links,…
   is there any way to access that assets on wp restful-api? thanks much
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fslideshow-feed-for-wordpress-restful-api%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Kevin Batdorf](https://wordpress.org/support/users/kbat82/)
 * (@kbat82)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/slideshow-feed-for-wordpress-restful-api/#post-11041146)
 * Hi [@cgtv](https://wordpress.org/support/users/cgtv/),
 * We don’t have something built in for this but you could register your own route
   and do a custom query. Here’s the one we used in the code. You would just have
   to figure out what slideshow id you want to query. Both the slideshow and each
   slide are a custom post type.
 *     ```
       $args = array(
       	'force_no_custom_order' => true,
       	'orderby' => 'menu_order',
       	'order' => 'ASC',
       	'post_type' => array('attachment', 'ml-slide'),
       	'post_status' => array('inherit', 'publish'),
       	'lang' => '', // polylang, ingore language filter
       	'suppress_filters' => 1, // wpml, ignore language filter
       	'posts_per_page' => -1,
       	'tax_query' => array(
       		array(
       			'taxonomy' => 'ml-slider',
       			'field' => 'slug',
       			'terms' => $slideshow_id
       		)
       	)
       );
       ```
   
 * Let me know if that helps.
 *  [Kevin Batdorf](https://wordpress.org/support/users/kbat82/)
 * (@kbat82)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/slideshow-feed-for-wordpress-restful-api/#post-11067579)
 * Hi [@cgtv](https://wordpress.org/support/users/cgtv/),
 * I’m going to mark this as resolved as we didn’t hear back, but please feel free
   to comment or open a new issue if needed, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘slideshow feed for wordpress restful-api’ is closed to new replies.

 * ![](https://ps.w.org/ml-slider/assets/icon.svg?rev=3568997)
 * [Slider, Gallery, and Carousel by MetaSlider - Image Slider, Video Slider](https://wordpress.org/plugins/ml-slider/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ml-slider/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ml-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/ml-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ml-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ml-slider/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Kevin Batdorf](https://wordpress.org/support/users/kbat82/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/slideshow-feed-for-wordpress-restful-api/#post-11067579)
 * Status: resolved