Ktai Styleのサムネイル表示
-
Ktai Styleでサムネイル一覧を表示したいです
<?php query_posts('posts_per_page=-1'); if (have_posts()) : while (have_posts()) : the_post(); ?> <dl> <dt class="title"><a href="<?php the_permaLink(); ?>"><?php the_title(); ?></a></dt> <dd class="text"><?php if ( has_post_thumbnail() ): // サムネイルを持っているときの処理 ?><a href="<?php the_permaLink(); ?>"><?php the_post_thumbnail( array(150,150), array('class' => 'imgLeft') ); ?></a><?php else: // サムネイルを持っていないときの処理 ?><img src="<?php bloginfo('template_url') ?>/image/no_image.gif" alt="noimage" class="imgLeft" /><?php endif; ?><?php the_excerpt(); ?></dd> </dl><?php endwhile; endif; wp_reset_query(); ?>でサムネイル一覧を表示しています。
携帯からみたとき、ktai-styleではカテゴリや並べ方を無視して保存してある画像すべてを表示されるようです。
また、画像が表示されず、リンクがあらわれるのみです。
並べ方やカテゴリを認識し、携帯からでも画像としてサムネイルを表示することができますでしょうか?
ktai-styleで、カテゴリや並べ方を変える方法はありますでしょうか?
2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
トピック「Ktai Styleのサムネイル表示」には新たに返信することはできません。