Skip to content

Instantly share code, notes, and snippets.

@marushu
Created July 25, 2015 08:04
Show Gist options
  • Save marushu/c25847c5b956bbc6752b to your computer and use it in GitHub Desktop.
Save marushu/c25847c5b956bbc6752b to your computer and use it in GitHub Desktop.
【キャッシュ対策】css, jsのバージョン番号
<?php
wp_enqueue_style(
'cocoyoka_css',
get_stylesheet_directory_uri() . '/style.css',
array( 'parent_css' ),
date( 'TmdHis', filemtime( get_stylesheet_directory() . '/style.css' ) ),
'all'
);
wp_enqueue_script(
'parent-style',
get_stylesheet_directory_uri() . '/js/contact-label.js',
array( 'jquery', 'google-map-js' ),
date( 'YmdHis', filemtime( get_stylesheet_directory() . '/js/contact-label.js' ) ),
true
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment