0

私の投稿はすべて、別々のものではなく、同じ div に表示されています。

<?php get_header(); ?>
 <div class="mainwrap">
 <div class="bloginner">
 <!-- begin section -->           

<section>
    <div class="postswrap">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="commentsetall"><img src="<?php bloginfo('template_url'); ?>/images/ico_folder.png" alt="Posted" /><span class="commentfix"><?php the_time('F j, Y') ?> in <?php the_category(', ') ?> by <?php the_author() ?></span></div>
    <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
    <div class="clearfix"></div>
    </div>

</section>
<!-- end section -->
 </div> 
<div class="clearfix"></div>
</div>
<?php get_footer(); ?>

これが起こらないようにするために欠落している可能性のあるクリアフィックスはありますか?

ありがとう

4

1 に答える 1

3

<div class="postswrap">そのような loop.somethingの中に入れます:

       <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 <div class="postswrap">
        <div class="commentsetall"><img src="<?php bloginfo('template_url'); ?>/images/ico_folder.png" alt="Posted" /><span class="commentfix"><?php the_time('F j, Y') ?> in <?php the_category(', ') ?> by <?php the_author() ?></span></div>
        <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
        <?php endwhile; else: ?>
        <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<div class="clearfix"></div>
        </div>        
<?php endif; ?>
于 2013-06-24T21:03:09.630 に答える