在214年,试着把这个放在你的孩子主题中:
function add_require_scripts_files() {
wp_enqueue_style(\'twentyfourteen-style\', get_stylesheet_directory_uri().\'/style.css\', array(), \'1.0.0\', "all");
}
add_action( \'wp_enqueue_scripts\', \'add_require_scripts_files\' );
这将用您自己的版本替换原始样式表。如果您使用的是不同的父主题,请查看原始wp\\U enqueue\\U样式标签中的样式。css并在子主题中复制该标签。每次进行更改时,您都必须将1.0.0更改为另一个数字(因此,对于不经常进行更改的生产环境来说,这更好)。
要同时从脚本和样式中删除版本,请尝试以下操作:
// remove WP version tag from scripts and styles, best for dev environments
// by Adam Harley https://wordpress.org/support/topic/enqueueregister-script-remove-version
add_filter( \'script_loader_src\', \'remove_src_version\' );
add_filter( \'style_loader_src\', \'remove_src_version\' );
function remove_src_version ( $src ) {
global $wp_version;
$version_str = \'?ver=\'.$wp_version;
$version_str_offset = strlen( $src ) - strlen( $version_str );
if( substr( $src, $version_str_offset ) == $version_str )
return substr( $src, 0, $version_str_offset );
}