Created
March 14, 2017 01:00
-
-
Save ranchodeluxemedia/b80e7deee20deeb34a7f205e9dee6204 to your computer and use it in GitHub Desktop.
Enqueue WordPress Scripts and Styles
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
| <?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