Skip to content

Instantly share code, notes, and snippets.

@joedajigalo
Last active March 14, 2017 01:00
Show Gist options
  • Save joedajigalo/591a33c4d17f3501d2ac to your computer and use it in GitHub Desktop.
Save joedajigalo/591a33c4d17f3501d2ac to your computer and use it in GitHub Desktop.
Enqueue WordPress Scripts and Styles
<?php
/* Enqueue Wordpress Scripts and Styles
-------------------------------------------------- */
function wp_enqueue_scripts_styles() {
// Javascript - Register Scripts
wp_register_script( 'bootstrap-script', get_template_directory_uri() . '/bootstrap/js/bootstrap.min.js', array( 'jquery' ), '3.2', true ); // -- From Parent Theme
wp_register_script( 'documents-script', get_stylesheet_directory_uri() . '/bootstrap/docs/docs.min.js', array( 'bootstrap-script' ), '3.2', true ); // -- From Child Theme
wp_register_script( 'bootlint-script', 'http://maxcdn.bootstrapcdn.com/bootlint/0.3.0/bootlint.min.js', array( 'angularjs-bootstrap-script' ), '0.3.0', true ); // -- From an External URL
// Javascript - Enqueue Scripts
wp_enqueue_script( 'bootstrap-script' );
wp_enqueue_script( 'documents-script' );
// Stylesheet - Register Styles
wp_register_style( 'bootstrap-style', get_template_directory_uri() . '/bootstrap/css/bootstrap.min.css', '3.2', true ); // -- From Parent Theme
wp_register_style( 'documents-style', get_stylesheet_directory_uri() . '/bootstrap/docs/docs.min.css', '3.2', true ); // -- From Child Theme
wp_register_style( 'external-style', 'http://www.example.com/stylesheet.css', '0.0', true ); // -- From an External URL
// Stylesheet - Enqueue Styles
wp_enqueue_style( 'bootstrap-style' );
wp_enqueue_style( 'documents-style' );
// Conditional Statement to enqueue Scripts/Styles on specific page templates
if ( is_page_template( 'page-template.php' ) ) {
wp_enqueue_script( 'bootlint-script' );
wp_enqueue_style( 'external-style' );
}
}
add_action( 'wp_enqueue_scripts', 'wp_enqueue_scripts_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment