全記事一覧用の固定ページテンプレートを作成
一覧表示時にアイキャッチ画像を追加
そのアイキャッチ画像の右側にテキストが回り込むように設定した備忘録です。
PAGE itiran 固定ページテンプレート (page-itiran.php)を使って全記事一覧を作る
WordPressの記事一覧にアイキャッチを表示させてみた(+αで個別記事にも)
<?php the_post_thumbnail(‘thumbnail’); ?>
<span style=” float: left; margin-right: 1em;”><?php the_post_thumbnail(‘thumbnail’); ?></span><br>
アイキャッチに個別記事へのパーマリンクを貼る方法
style.cssに追記
/* =リンクの発光
———————————————– /
/ サムネイル */
a .linkimg {
background:none!important;
}
.entry-content a:hover .linkimg {
opacity:0.6;
filter:alpha(opacity=60);
-ms-filter: “alpha( opacity=60 )”;
background:none!important;
}