Last active
March 1, 2019 11:27
-
-
Save kisildev/602ea5b28ce252d25eae7099723f1a61 to your computer and use it in GitHub Desktop.
Add styles and scripts
This file contains hidden or 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
| // Enqueue styles and scripts. | |
| function theme_name_load_resources() { | |
| //css | |
| wp_enqueue_style( '$handle', get_template_directory_uri().'/src' ); | |
| //js | |
| wp_enqueue_script( '$handle', get_template_directory_uri().'/src' ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'theme_name_load_resources' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment