Skip to content

Instantly share code, notes, and snippets.

@kisildev
Last active March 1, 2019 11:27
Show Gist options
  • Select an option

  • Save kisildev/602ea5b28ce252d25eae7099723f1a61 to your computer and use it in GitHub Desktop.

Select an option

Save kisildev/602ea5b28ce252d25eae7099723f1a61 to your computer and use it in GitHub Desktop.
Add styles and scripts
// 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