アイキャッチを上に自動挿入

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 );
画像の見た目等は子テーマの style.css で .post-top-thumbnail で調整
これで本文に画像がなくともアイキャッチに入れると表示してくれます
本文がスッキリした