我正在尝试使用 get_template_directory_uri() 将图像加载到 jquery.backstretch.js 文件和我的 styles.css 中。到目前为止,我将图像直接添加到名为“img”的文件夹中的主题文件夹中,并将其用于我的 HTML:
<img src="<?php echo get_template_directory_uri(); ?>/img/logoyellow.png" class="hidden-xs" alt="logo" />
效果很好!
但我在 jquery 文件 (jquery.backtretch.js) 中做了以下操作:
$(document).ready(function () {
$("#home-section").backstretch("<?php echo get_template_directory_uri(); ?>/img/background-image2.jpg");
});
但是没有雪茄 :( 我也想知道如何在我的 CSS 中加载它。像这样的东西:
#milestones-section {
background: url('<?php echo get_template_directory_uri(); ?>/img/hbg.jpg') center center;
}
提前致谢!