Reply To: Slider/Sticky post/Home page problem

#11395
karona513
Participant

Helder, your tip was extremely helpful. I just want to add that there is one additional line that needs to be added for it to work:

php if( have_posts() ):
php while( have_posts() ) : the_post();
php if(!is_sticky()):
php get_template_part( ‘content’, get_post_format() );
php endif;
php endwhile;

Add line 2 and line 5. Could never have figured it out without the starting tip! Thx.