我是靠谱客的博主 冷傲西装,最近开发中收集的这篇文章主要介绍wordpress自定义网站背景颜色和图片,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

如果你想改变默认的body的背景颜色,图片,参数,下面的代码轻松实现,这里只是一个参考,你完全可以自己增加css元素

 functions.php 文件添加如下代码:

// 激活自定义背景和设置回调函数
if ( function_exists( 'add_theme_support' ) ) {
    $defaults = array(
        'default-color' => '000000',//自定义颜色
        'default-image' => get_template_directory_uri() . '/img/background.png',//自定义图片
        'wp-head-callback' => 'my_theme_background_cb',
        'admin-head-callback'    => '',
        'admin-preview-callback' => ''
    );
    add_theme_support( 'custom-background', $defaults );
}
// Callback function to alter custom background behavior
function my_theme_background_cb() {
    $background = get_background_image();
    $color = get_background_color();
 
    if ( ! $background && ! $color )
        return;
 
    $style = $color ?  : '';
 
    if ( $background ) {
        $image = ;
 
        $repeat = get_theme_mod( 'background_repeat', 'repeat' );
        if ( ! in_array( $repeat, array( 'no-repeat', 'repeat-x', 'repeat-y', 'repeat' ) ) )
                $repeat = 'repeat';
        $repeat = ;
 
        $position = get_theme_mod( 'background_position_x', 'left' );
        if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
                $position = 'left';
        $position = ;
 
        $attachment = get_theme_mod( 'background_attachment', 'scroll' );
        if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
                $attachment = 'scroll';
        $attachment = ;
 
        $style .= $image . $repeat . $position . $attachment;
    }
?>
    <!-- You can set any class or id target here -->
    <style type= id=>;
        .main { <?php echo trim( $style ); ?> }
    </style>
<?php } ?>

您可能感兴趣的文章:


▪ WordPress 3D旋转彩色标签云

▪ Wordpress主题制作基本模版文件以及基本函数

▪ 第一课:511遇见wordpress本地环境搭建以及多站点配置

▪ WordPress免插件实现面包屑导航

▪ wordpress添加Body Classes

▪ 第六课511遇见Wordpress主题制作标题函数wp_title

▪ 第三课511遇见WordPress主题开发教程基本文件的建立

▪ Wordpress无插件实现主题彩色标签云的N种方法总结

▪ wordpress限制非管理员访问管理面板

▪ 利用Bootstrap构建你的响应式WordPress主题(四

最后

以上就是冷傲西装为你收集整理的wordpress自定义网站背景颜色和图片的全部内容,希望文章能够帮你解决wordpress自定义网站背景颜色和图片所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部