我们在夏天开发/推出了一个网站,使用自定义js脚本为滑块图像添加色板。
一切运作良好,直到最近我们才注意到滑块样本不再出现了。深入挖掘我注意到创建的自定义js文件不再被添加到我们网站的标题中。以下是我们的functions.php文件中的编码,该文件在我们启动网站时以及直到最近几个月都有效:
function bd_slider_script() {
if(is_front_page()){
wp_enqueue_script("jquery");
wp_enqueue_script(
'slider-swatches',
get_stylesheet_directory_uri() . '/includes/slider_swatches.js',
array( 'jquery' ),
'05122014',
true
);
}
}
add_action( 'wp_enqueue_scripts', 'bd_slider_script', 11 );
最新版本的WordPress是否更新了此脚本?还是有什么我想念的?这工作了几个月,现在突然间它没有....
任何帮助都非常感谢!