アイキャッチ画像機能をオンにする
アイキャッチ画像機能をオンにするにはafter_setup_themeフックの処理でadd_theme_support関数をオンにする必要があります。functions.phpに記述します
functions.phpに記述するコード
functions.php
function my_custom_theme_setup() {
add_theme_support('post-thumbnails');
}
add_action( 'after_setup_theme', 'my_custom_theme_setup' );
本サイトの内容に誤りや不正確な記述がある場合やサンプルに基づくいかなる結果も一切の責任を負いかねますので、あらかじめご了承ください。