Last active
October 9, 2024 00:37
-
-
Save kellenmace/5ce9909d37d37521481b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ) | |
); |
@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
hi, sorry cant figure out, where to put it?