アーカイブにアイキャッチ画像を表示させる(Photograph)

テキスト表示だけだったアーカイブにアイキャッチ画像を表示させる

Before After
archive-before archive-after

 

  1. archive.phpを修正
    追加コード・・・the_post_thubnail()関数, id:b-thumbnail,b-title,text-boxの指定

    <a title="Permanent Link to&lt;br /&gt;
    &lt;?php the_title_attribute(); ?&gt;" href="&lt;?php the_permalink() ?&gt;" rel="bookmark"><!--?php /* アイキャッチ画像を表示 サイズと位置指定 */ ?-->
    <span id="b-thumbnail">
    <!--?php the_post_thumbnail( array(150,150), array('class' =--> 'imgLeft') ); ?&gt;</span>
    <p id="b-title"></p>
    
    </a>&nbsp;
    
    ・・・中略・・・
    <div id="text-box"></div>
    
  2. 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;
    }
    

Posted in css, php.

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です