<?php if ( have_posts() ) : ?>
<?php
$count = 1;
$featuredPosts = 9;
query_posts('showposts=19');
?>
<div class="articleTile column_3">
<?php while ( have_posts() ) : the_post(); ?>
<?php if($count > $featuredPosts) : ?>
<!--change class to articleList column_2-->
<?php endif; ?>
<div class="column">
<?php get_template_part( 'content', 'featured' ); ?>
<!-- #post-<?php the_ID(); ?> -->
</div>
<?php
$count = $count ++;
endwhile;
?>
</div>
<div class="articleTile column_3">
当 count 变量达到 10 时,我将如何定位元素并更改其类?
编辑:对不起,我是个白痴。
我已经设法做到了:
<?php if ( have_posts() ) : ?>
<?php
$count = 1;
$featuredPosts = 9;
query_posts('showposts=19');
?>
<div class="articleTile column_3">
<?php while ( have_posts() ) : the_post(); ?>
<?php if($count == $featuredPosts + 1) : ?>
<?php echo $count ?>
</div>
<div class="articleList column_2">
<?php endif; ?>
<div class="column">
<?php echo $count ?>
<?php get_template_part( 'content', 'featured' ); ?>
<!-- #post-<?php the_ID(); ?> -->
</div>
<?php
$count = $count +1;
endwhile;
?>
</div>
如果没有具有不同类的第二个元素,我的原始方法无论如何都不会起作用。我很抱歉。感谢他们帮助我指出正确方向的快速反应。