我在WordPress网站使用猫头鹰旋转木马,我想使用网站的URL动态添加从主题URL到网站的导航img。
这是密码:
$(".home-slider-wrapper").owlCarousel({
autoplay: true,
autoplayHoverPause: false,
loop: true,
nav: true, // Show next and prev buttons
dots: false,
slideSpeed: 2500,
smartSpeed: 1000,
responsive: {
0: {
items: 1,
}
},
navText: [
'<img src="/assets/images/angel-left.svg" alt="angle left" class="owl-prev__img" width="16px" height="14px">',
'<img src="/assets/images/angel-right.svg" alt="angle right" class="owl-next__img" width="16px" height="14px">',
],
});
在functions.php
中,我编写了动态获取站点URL的代码,可以通过以下方式访问站点URL:siteURLData.root_url
,它工作得很好。
也许这么简单,但我想知道如何在navText src中使用siteURLData.root_url
。
1条答案
按热度按时间1aaf6o9v1#
哦,这是愚蠢的,我认为我不能使用反引号来解决它简单: