日本語
フォーラム
(@erorian)
12年、 3ヶ月前
ちなみにその部分のcssです
<?php if ( have_posts() ) : ?> <?php $i = 0; ?> <?php while ( have_posts() ) : the_post(); $i++; ?>
<div class=”post_home”> ” class=”thumb” title=”<?php the_title(); ?>”> <?php if (has_post_thumbnail()) : ?> <?php the_post_thumbnail(array(145,145)); ?> <?php else : ?> <img src=”<?php bloginfo(‘template_url’); ?>/i/noimage.jpg” width=”145″ height=”145″ alt=””/> <?php endif; ?> <h2>“><?php the_title(); ?></h2> </div>
<?php if ($i % 6 == 0) echo ‘<div style=”clear: both;”></div>’?> <?php endwhile; ?> <?php endif; ?>