我有一个循环代码,其中显示了第一条带有缩略图的帖子,而其他帖子则不包含缩略图。但我想将其归为特定类别。.
我的循环看起来像这样:
<div class="category">
<ul>
<!-- Start the Loop. -->
<?php $i = 1 ; ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- Display the Title as a link to the Post's permalink. -->
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php if ($i == 1): ?>
<?php the_post_thumbnail();?>
<?php endif; ?>
<?php $i++; endwhile; endif; ?>
</ul>
</div>
所以我想按具有相同样式的特定类别显示此内容。
答案 0 :(得分:0)
在文件中尝试此代码
<?php $catquery = new WP_Query( 'cat=72&posts_per_page=-1' ); ?>
<ul>
<?php
while($catquery->have_posts()) : $catquery->the_post();
?>
<li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<li><?php the_content(); ?></li>
<ul>
<?php endwhile; ?>
</ul>
<?php wp_reset_postdata(); ?>