WordPressテーマLuxeritasの記事上部に自動でアイキャッチ画像を挿入する方法(function.phpの編集)
Luxeritasは「アイキャッチ画像を記事に自動挿入する」という機能が、今のところ無いそうです。ただLuxeritasの開発者「るな」様のブログで紹介されていましたので、それを引用させて頂きます。
まず「Luxeritas」>「子テーマの編集」>「function.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 );