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' )
);
@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