Title: Slideshow content?
Last modified: February 28, 2022

---

# Slideshow content?

 *  [jduffus](https://wordpress.org/support/users/jduffus/)
 * (@jduffus)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/)
 * I’m experimenting with a site that is not live yet but was populated with old
   content from an XML export of its previous WP installation. I am unclear how 
   I can determine which posts will show in the homepage slideshow.
 * What is the criterion in Avventura for how that content is selected? Can I change
   it?

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

 *  Theme Author [alexvtn](https://wordpress.org/support/users/alexvtn/)
 * (@alexvtn)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15411456)
 * Hello
 * a new option to display specific posts will be added within few working days,
   the slideshow show the recent posts
 * Thanks for your suggestion
 * Alex
 *  Thread Starter [jduffus](https://wordpress.org/support/users/jduffus/)
 * (@jduffus)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15411844)
 * Look forward to it. There is a “make this post sticky” toggle on the editor. 
   Is that doing anything?
 *  Theme Author [alexvtn](https://wordpress.org/support/users/alexvtn/)
 * (@alexvtn)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15412513)
 * Yes, if you make a post as sticky post, it will be show on the homepage slideshow
 * If needed you can create a child theme and use the following PHP code to exclude
   the sticky posts from the main loop on homepage (this feature is already available
   on the pro version)
 *     ```
       function avventura_exclude_single_posts_home($query) {
       	if (
       		$query->is_home() && 
       		$query->is_main_query()
       	) {
       		$query->set('post__not_in', get_option( 'sticky_posts' ));
       	}
       }
   
       add_action('pre_get_posts', 'avventura_exclude_single_posts_home');
       ```
   
 *  Thread Starter [jduffus](https://wordpress.org/support/users/jduffus/)
 * (@jduffus)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15416044)
 * Thanks, Alex! The other question I have about the slideshow is how I can make
   the slides clickable?
 *  Theme Author [alexvtn](https://wordpress.org/support/users/alexvtn/)
 * (@alexvtn)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15416263)
 * You’re welcome 😉
 * This feature is not still available, i could add this feature with the next theme
   update
 * Best regards
 * Alex
 *  Thread Starter [jduffus](https://wordpress.org/support/users/jduffus/)
 * (@jduffus)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15416459)
 * That would be great. It’s a beautiful theme.

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

The topic ‘Slideshow content?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/avventura-lite/1.7.9.9/screenshot.
   jpg)
 * Avventura Lite
 * [Support Threads](https://wordpress.org/support/theme/avventura-lite/)
 * [Active Topics](https://wordpress.org/support/theme/avventura-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/avventura-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/avventura-lite/reviews/)

## Tags

 * [slideshow](https://wordpress.org/support/topic-tag/slideshow/)

 * 6 replies
 * 2 participants
 * Last reply from: [jduffus](https://wordpress.org/support/users/jduffus/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/slideshow-content/#post-15416459)
 * Status: not resolved