在此先感谢提供帮助的人。
我在我的wordpress上有一个wordpress Script n样式扩展,以前的开发人员添加了它。 但是我注意到,当我以“ Script n Styles”更新脚本时,这并没有任何改变。 如果不使用缓存,则使用缓存时,刷新次数可以根据需要进行,刷新导航器时不会更新脚本,保持不变。
只看一下: Script n Styles extension's script here
Script displayed on the page whatever I do in script n style extension
您有什么主意吗?如果您愿意,我可以发送该网站的链接!它的afh.asso.fr(首页仅使用该段代码(用于首页上的“ mon afh”红色小按钮)
在此先感谢您的帮助,非常感谢! :)
答案 0 :(得分:0)
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
function theme_enqueue_styles() {
// Get the theme data
$the_theme = wp_get_theme();
// Add custom style here in custom.css
wp_enqueue_style('custom', get_stylesheet_directory_uri() . '/css/custom.css', array(), $the_theme->get('Version'));
wp_enqueue_script('jquery');
// add custom javascript here in custom.js
wp_enqueue_script('main', get_stylesheet_directory_uri() . '/js/custom.js', array(), $the_theme->get('Version'), true);
}
可以在此处找到更多信息:
https://developer.wordpress.org/reference/functions/wp_enqueue_script/