更改无限滚动加载图像

时间:2015-11-11 16:46:52

标签: javascript php html infinite-scroll

我一直试图在Wordpress上使用Infinite Scroll和Masonry,但我无法更改loader.gif。

我在firebug中收到404错误。

我在functions.php

中使用寄存器脚本作为模板路径
function computeTotalDistance(result) {
var total = 0;
var myroute = result.routes[0];
for (var i = 0; i < myroute.legs.length; i++) {
total += myroute.legs[i].distance.value;
}
total = total / 1000;
document.getElementById('total').innerHTML = total + ' km';
}

这就是我在js文件中的内容:

wp_register_script( 'image-folder', 'myscript_url' );
wp_enqueue_script( 'image-folder' );
$translation_array = array( 'templateUrl' => get_stylesheet_directory_uri() );

我有正确的路径,但问题是它不断将图像路径添加到当前页面的网站网址上,即

http://mysite.co.uk/news-events/http:/mysite.co.uk/im/wp-content/themes/mytheme/images/loader.gif&#34;

1 个答案:

答案 0 :(得分:0)

首先,您的loadingImg路径应该是动态的get_template_directory_uri();here)。当使用主题文件时,ressources路径永远不应该是“硬写”。

那么错误信息是什么(如果存在)?