• 初歩的な質問かもしれませんが、調べても見つけられなかったので
    質問させていただきました。
    個別ページにサムネイル入り一覧を表示させたいと思っているんですが、
    現状、1列で表示されているものを3列・3行といった複数列で表示したいと思ってます。

    このようなタグなどで情報を取得している場合は、
    どのように構成すればよいのでしょうか?

    ちなみにテーマはオリジナルで、
    基礎から作成している初心者レベルです。

    以下は現状記載のコード

    <?php
    query_posts('posts_per_page=9');
     if (have_posts()) :
      while (have_posts()) : the_post(); ?>
    <table>
    <tr>
     <td class="text"><?php
       if ( has_post_thumbnail() ): // サムネイルを持っているときの処理
        ?><?php the_post_thumbnail( array(150,150), array('class' => 'imgLeft') ); ?><?php
       else: // サムネイルを持っていないときの処理
        ?><img src="<?php bloginfo('template_url') ?>/image/no_image.gif"  class="imgLeft" /><?php
       endif; ?></td><?php the_excerpt(); ?></tr>
    <tr>
    <td class="title"><a href="<?php the_permaLink(); ?>"><?php the_title(); ?></a></td></tr>
    <tr>
    <td class="date"><?php the_time('Y.m.d'); ?>UP</td>
    </tr>
    <?php
      endwhile;
     endif;
    wp_reset_query();
    ?>
    </table>
  • トピック「最新記事一覧を個別ページに、複数列で表示させたい。」には新たに返信することはできません。