アイキャッチ画像機能をオンにする

アイキャッチ画像機能をオンにするには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' );

ネットショップ向けWooCommerce対応WordPressテーマ「Japacart(ジャパカート)」

本サイトの内容に誤りや不正確な記述がある場合やサンプルに基づくいかなる結果も一切の責任を負いかねますので、あらかじめご了承ください。

ネットショップ向けWooCommerce対応WordPressテーマ「Japacart(ジャパカート)」
Copyright © WPスイッチ All Rights Reserved.