テキスト表示だけだったアーカイブにアイキャッチ画像を表示させる
Before | After | |
---|---|---|
![]() |
→ | ![]() |
- archive.phpを修正
追加コード・・・the_post_thubnail()関数, id:b-thumbnail,b-title,text-boxの指定<a title="Permanent Link to<br /> <?php the_title_attribute(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><!--?php /* アイキャッチ画像を表示 サイズと位置指定 */ ?--> <span id="b-thumbnail"> <!--?php the_post_thumbnail( array(150,150), array('class' =--> 'imgLeft') ); ?></span> <p id="b-title"></p> </a> ・・・中略・・・ <div id="text-box"></div>
- custom.cssにコード追加
#text-box{ display:block; height:100px; margin-left:160px; font-size: 12px; } #b-title a{ font-size:16px; color:powderblue; } #b-thumbnail{ float: left; /* テキストの回り込み可にする */ margin: 0 10px 0 5px; }