【发布时间】:2021-05-20 07:04:00
【问题描述】:
我想跳过或不显示第一篇文章。 我怎样才能跳过第一个帖子?
<?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(); ?>
【问题讨论】:
-
这能回答你的问题吗? How to skip the 1st key in an array loop?