Luxeritas(ルクセリタス)記事の上にアイキャッチ画像を自動表示する方法

Luxeritas(ルクセリタス)で、アイキャッチ画像を記事上に自動で表示させる方法。
まず、functions phpに次の記載をする。
//サムネイル記事表示 -------------
function display_post_top_thumbnail( $content ){
    if( has_post_thumbnail() === true ) {
        global $post;
        $content = '<div class="post-top-thumbnail">' .  get_the_post_thumbnail( $post->ID, 'full' ) . '</div>' . $content;
    }
    return $content;
}
add_filter( 'thk_content', 'display_post_top_thumbnail', 11, 1 );
そして、cssに次の記載をする。
※中寄せして表示させる場合※
.post-top-thumbnail {
text-align:center;
padding-bottom:20px;
}
スポンサードリンク

スポンサードリンク

スポンサードリンク