问题描述

是否有代码或插件可以添加默认的背景,就像你可以用二十十的默认标题。看起来像相同的框架工作的背景和标题。

最佳解决方案

没有默认的方法,虽然有一个 Trac ticket 。我发现这个 (未经测试) 可能适用于您:http://www.devblog.fr/2011/05/16/plusieurs-fonds-personnalises-wordpress-add_custom_background/

同样值得注意的是,3.4 的 new way of defining a default background(仍然只有一个) 。

Edit

以下是代码:

<?php
function wpse48332_setup_theme() {
    // Add support for custom backgrounds
    add_theme_support( 'custom-background', array(
        // Background color default
        'default-color' => '000',
        // Background image default
        'default-image' => get_template_directory_uri() . '/images/background.jpg'
    ) );
}
add_action( 'after_setup_theme', 'wpse48332_setup_theme' );
?>

(请注意,您也可以定义前端,管理和预览样式回调。)

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。