我的所有网站都转换为wordpress,imgs,css,字体,图标,但所有背景:url('../ images / bg);未转换, 我的
#divider {
background: url("../images/about-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
color: #FFFFFF;
}
#contact {
background: url('../images/contact-bg2.jpg');
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
}
#newsletter {
background: url('../images/newsletter-bg2.jpg') center center;
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
text-align: center;
padding-top: 120px;
padding-bottom: 120px;
}
答案 0 :(得分:0)
假设这些样式已添加到主题文件夹中的style.css
,并且图片位于主题文件夹中名为images
的文件夹内>,后台网址需要定义为background: url('images/contact-bg2.jpg');
但是,如果您已将这些样式添加到模板文件的标题中,那么最好的方法是使用get_template_directory_uri()
函数提供完整路径。
background: url('<?php echo get_template_directory_uri(); ?>/images/contact-bg2.jpg');