Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Last active October 28, 2021 08:53
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save kellenmace/5ce9909d37d37521481b to your computer and use it in GitHub Desktop.
Save kellenmace/5ce9909d37d37521481b to your computer and use it in GitHub Desktop.
<?php
// Version CSS file in a theme
wp_enqueue_style(
'theme-styles',
get_stylesheet_directory_uri() . '/style.css',
array(),
filemtime( get_stylesheet_directory() . '/style.css' )
);
// Version JS file in a theme
wp_enqueue_script(
'theme-scripts',
get_stylesheet_directory_uri() . '/js/scripts.js',
array(),
filemtime( get_stylesheet_directory() . '/js/scripts.js' )
);
// Version CSS file in a plugin
wp_enqueue_style(
'plugin-styles',
plugin_dir_url( __FILE__ ) . 'assets/css/plugin-styles.css',
array(),
filemtime( plugin_dir_path( __FILE__ ) . 'assets/css/plugin-styles.css' )
);
// Version JS file in a plugin
wp_enqueue_script(
'plugin-scripts',
plugin_dir_url( __FILE__ ) . 'assets/js/plugin-scripts.js',
array(),
filemtime( plugin_dir_path( __FILE__ ) . 'assets/js/plugin-scripts.js' )
);
@apermo
Copy link

apermo commented Apr 17, 2019

Hey, just stumpled upon your code when I wanted to show this technique to a coworker.

Please mind that get_stylesheet_directory_uri() refers to the childtheme in case you use a childtheme, and is only equivalent if you only have the parent theme.
If you want to make sure it points the parent theme, you need to use get_template_directory_uri() instead.

@sanderlt
Copy link

hi, sorry cant figure out, where to put it?

@kellenmace
Copy link
Author

@sanderlt You can put calls to wp_enqueue_style() and wp_enqueue_script() inside of a function that is hooked to WordPress' wp_enqueue_scripts hook. These examples show how to do that: https://developer.wordpress.org/reference/functions/wp_enqueue_style/#user-contributed-notes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment