The way we load Javascript and CSS files in Wordpress is different from the normal HTML way.
First of all, we need to identify where do we want to load the scripts. Is it in our theme or plugin?.
Lets say we want to load it to our theme, we can easily create a new folder in our child theme and place the scripts in it. for example
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
//create the directories first in our child theme | |
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js | |
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css | |
//copy files from our machine to the server site. | |
scp utils.js alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js/ | |
scp utils.css alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css/ |
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
function wp_add_javascripts() { | |
wp_enqueue_script('utils-js', | |
get_stylesheet_directory().'/assets/js/utils.js', array('jquery'),'1.1', true); | |
} | |
function wp_add_styles() { | |
wp_enqueue_style('utils-css', | |
get_stylesheet_directory().'/assets/css/utils.css'); | |
} | |
//add to the wp_enqueue_scripts hook. | |
add_action( 'wp_enqueue_scripts', 'wp_add_javascripts' ); | |
add_action( 'wp_enqueue_scripts', 'wp_add_styles' ); |
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
Parameters #Parameters | |
$handle | |
(string) (Required) Name of the script. Should be unique. | |
$src | |
(string) (Optional) Full URL of the script, or path of the script relative to the WordPress root directory. | |
Default value: '' | |
$deps | |
(array) (Optional) An array of registered script handles this script depends on. | |
Default value: array() | |
$ver | |
(string|bool|null) (Optional) String specifying script version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added. | |
Default value: false | |
$in_footer | |
(bool) (Optional) Whether to enqueue the script before </body> instead of in the <head>. Default 'false'. | |
Default value: false |
Comments
Post a Comment