0

特定のカテゴリの投稿を 3 列のレイアウトとして表示しようとしています。問題は、for または forwach を使用して各投稿のサムネイルの表示をループする方法がわからないため、3 つ以上になると one_thrid_last を使用できることです。css クラス。

<?php while ( have_posts() ) : the_post(); ?>
<?php if (is_category('actress-gallery') ):?>
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) : ?>     
<div class="one_fourth_last">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'tie' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<?php   echo $image_url = wp_get_attachment_image( get_post_thumbnail_id($post->ID) , 'thumbnail' );   ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'tie' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
        </a>
    </div><!-- post-thumbnail /-->

        <?php endif; ?>
4

3 に答える 3

0
<div class="wrapper" style="width:800px; height:auto;">

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>    
    <?php if ( has_post_thumbnail() ) { ?>
        <div class="image-wrapper" style=" width:250px; height:300px;" >
            <?php the_title();?>
            <?php the_content();?>
            <?php the_post_thumbnail(); ?>
        </div>

    <?php } endwhile; endif; ?>
</div>
于 2013-08-29T12:38:32.710 に答える
0
<div class="wrapper" style="width:750px; height:700px;">
<?php while (have_posts()) : the_post(); ?>    
<?php if ( has_post_thumbnail() ) { ?>
<div style="width:250px; height:300px;" >
   <?php the_title();?>
   <?php the_post_thumbnail(); ?>
</div>
 <?php } endif; ?>
</div>
于 2013-09-12T06:11:03.347 に答える