外観カスタマイズが有効となっている WordPress テーマで、カスタム背景を有効にするには add_theme_support 関数を、無効にするには remove_theme_support 関数を利用します。
テーマの functions.php に記述する方法について記載しています。
functions.php を編集する場合は、事前にバックアップをされることをおすすめします。
カスタム背景を有効にする
function after_setup_theme_first_theme() {
add_theme_support('custom-background');
}
add_action('after_setup_theme', 'my_after_setup_theme');
カスタム背景を無効にする
function after_setup_theme_first_theme() {
remove_theme_support('custom-background');
}
add_action('after_setup_theme', 'my_after_setup_theme');
参考情報
- add_theme_support() – Function | Developer.WordPress.org
- remove_theme_support() – Function | Developer.WordPress.org
コメント