Skip to content

Instantly share code, notes, and snippets.

@mommaroodles
Created December 11, 2013 10:11
Show Gist options
  • Save mommaroodles/7908006 to your computer and use it in GitHub Desktop.
Save mommaroodles/7908006 to your computer and use it in GitHub Desktop.
Force Browsers To Load Latest CSS And JS
<?php
add_action( 'wp_enqueue_scripts', 'add_styles' );
function add_styles()
{
$css_file = get_stylesheet_directory() . '/css/style.css';
wp_enqueue_style( 'css-file', get_stylesheet_directory_uri().'/css/style.css', NULL, filemtime($css_file) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment