스물 넷에서 자녀 테마에 이것을 넣으십시오.
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' );
이것은 원래 스타일 시트를 대신하지만 자신의 버전으로 바꿉니다. 다른 상위 테마를 사용중인 경우 style.css의 원래 wp_enqueue_style 레이블을보고 하위 테마 내에서 해당 레이블을 복제하십시오. 변경할 때마다 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 );
}