我想弄清楚为什么我设置的任何 JS 或 CSS 文件中都没有包含版本号查询字符串。我查看了所有文档并尝试了不同的方法。我什至尝试删除该版本,而 Wordpress 不会添加它自己的版本。希望从其他人那里得到任何其他想法来尝试,这样我就可以更轻松地缓存中断 Cloudflare。
wp_enqueue_style( 'theme-stylesheet', get_template_directory_uri() . '/assets/css/style.css', false, '1.0' );
wp_register_script( 'theme-scripts', get_template_directory_uri() . '/assets/js/blacklab.min.js', array( 'jquery' ), '1.0.2', true );
wp_localize_script( 'theme-scripts', 'localVar', $stream_info );
wp_enqueue_script( 'theme-scripts' );
Run Code Online (Sandbox Code Playgroud)