是否可以让页面显示自定义分类法中每个类别的第一篇文章?
e、 g海关税称为画廊部分,其中有一系列类别,即画廊1、画廊2等。
页面需要显示每个类别的第一篇文章,例如Gallery 1、Gallery 2等的第一篇文章。因此本质上是一个用于导航到每个类别区域的页面。
目前我只是这样做,但它不是很有活力,只是手动输入每个类别。
<?php query_posts( array( \'post_type\' => \'gallery-section\',\'gallery-area\' => ‘gallery-1\',\'posts_per_page\' => \'1\') ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col span_1_of_4 gallery_block">
<a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a>
</div>
<?php endwhile; endif; wp_reset_query();?>
<?php query_posts( array( \'post_type\' => \'gallery-section\',\'gallery-area\' => ‘gallery-2\',\'posts_per_page\' => \'1\') ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col span_1_of_4 gallery_block">
<a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a>
</div>
<?php endwhile; endif; wp_reset_query();?>
希望我已经解释得足够清楚了。。