Ezatullah Tabish
Ezatullah Tabish

Reputation: 33

How can I skip the first post in WordPress loop?

I want to skip or don't show first post. how can I do skip firs post?

              <?php query_posts('cat=' . $tabish['opt-box1'] . '&showposts' . $tabish['opt-box1-count']); ?> 
                <?php while (have_posts()) : the_post(); ?>
                    <div class="section-left-title">
                        <ul>
                            <li>
                                <a href="<?php the_permalink(); ?>"><i class="fa fa-angle-double-left"></i>
                                    <?php the_title(); ?>
                                </a>
                                <p class="card-text"><small class="text-muted"><?php the_time('d M Y'); ?> </small></p>
                            </li>
                        </ul>
                    </div>
                <?php endwhile; ?>
                <?php wp_reset_query(); ?>

Upvotes: 0

Views: 514

Answers (1)

Bhautik
Bhautik

Reputation: 11282

<?php query_posts( 'cat=' . $tabish['opt-box1'] . '&showposts' . $tabish['opt-box1-count'] ); 
    $i = 0; 
    while( have_posts() ) { the_post(); 
        if( $i > 0 ){ ?>
            <div class="section-left-title">
                <ul>
                    <li>
                        <a href="<?php the_permalink(); ?>"><i class="fa fa-angle-double-left"></i>
                            <?php the_title(); ?>
                        </a>
                        <p class="card-text"><small class="text-muted"><?php the_time('d M Y'); ?> </small></p>
                    </li>
                </ul>
            </div>
        <?php 
        } 
        $i++; 
    } 
wp_reset_query(); ?>

Upvotes: 1

Related Questions