在主题加载上设置WP custombackground颜色

时间:2013-03-22 07:11:43

标签: php wordpress colors

我正在尝试获取我的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' );

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

尝试在您的子主题的function.php中添加它

add_action('after_setup_theme','child_default_background_color');
function child_default_background_color() {
    $theme_options = get_option( 'twentytwelve_theme_options');
    if ( 'dark' == $theme_options['color_scheme'] )
        $default_background_color = 'ffffff';
    else
        $default_background_color = '333333';

    add_theme_support( 'custom-background', array(
        // set default background color in child theme
        'default-color' => $default_background_color
    ) );
}