我试图让我的 Wordpress 二十二个子主题确保当主题被激活时背景是白色的。我不能只将 CSS 添加到 wp_head,因为这样用户就无法设置自定义背景。
我一直在看 after_setup_theme 钩子
function set_white_bg() {
set_theme_mod( custom-background, 'ffffff'); }
add_action('after_setup_theme', 'set_white_bg');
我也试过这个 - 再次没有运气
function wpse64373_set_custom_background( $new_colour )
{
$old_colour = get_theme_mod(
'background_color'
,get_theme_support( 'custom-background', 'default-color' )
);
if ( $old_colour == $new_colour )
return;
return set_theme_mod( 'background_color', $new_colour );
}
function wpse64373_update_custom_background()
{ wpse64373_set_custom_background( 'ffffff' ); }
add_action( 'switch_theme', 'wpse64373_update_custom_background' );
我在这里做错了什么?