我正在使用 Wordpress,我想对“Streetstyle”类别中的帖子使用不同的循环。因此,例如,如果有一个帖子归类为“摄影”,则循环的样式将是正常的。但是如果帖子被归类为“街头风格”,帖子周围会有黑色边框。
这是我的循环:
<?php query_posts('posts_per_page=9' . '&orderby=date');
while ( have_posts() ) : the_post(); ?>
<div <?php post_class('pin'); ?>>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
the_content('Les mer'); ?>
</div>
<?php endwhile;
// Reset Query
wp_reset_query(); ?>