記事タイトル下にアイキャッチを表示させる

2020年12月22日

functions.phpに下記を記載する事で実装できます。


/* --------------------記事タイトル下のアイキャッチ-------------------- */

function display_post_top_thumbnail( $content ){
	if( has_post_thumbnail() === true ) {
		global $post;
		$content = '
' . get_the_post_thumbnail( $post->ID, 'full' ) . '
' . $content; } return $content; } add_filter( 'thk_content', 'display_post_top_thumbnail', 11, 1 );
YouTube

2020年12月22日