<?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>
私の元の方法は、別のクラスの 2 番目の要素がなければ機能しませんでした。謝罪いたします。彼らが私を正しい方向に向けるのを助けてくれた素早い反応に感謝します.