Skip to content

Instantly share code, notes, and snippets.

@cdmz
Created October 6, 2015 19:41
Show Gist options
  • Select an option

  • Save cdmz/111ef5573101d3461045 to your computer and use it in GitHub Desktop.

Select an option

Save cdmz/111ef5573101d3461045 to your computer and use it in GitHub Desktop.
include script wordpress
function theme_name_scripts() {
wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/main.js', array(), '1.0.0', true );
wp_enqueue_style('main2' , get_template_directory_uri() ."/css/main2.css");
}
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment