• Hi! I’m learning wordpress and i need help for this. thanks!

    I use this simple code from show posts. The problem is that i don’t want list/show featured posts in loop.

    <?php if ( have_posts() ) : ?>
    
    			<?php /* The loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', get_post_format() ); ?>
    			<?php endwhile; ?>
    
    		<?php else : ?>
    			<?php get_template_part( 'content', 'none' ); ?>
    		<?php endif; ?>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]

  • The topic ‘Exclude featured posts from loop’ is closed to new replies.