47 lines
1.8 KiB
PHP
47 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Scripts and stylesheets
|
|
*
|
|
* Enqueue stylesheets in the following order:
|
|
* 1. /theme/css/bootstrap.css
|
|
* 2. /theme/css/bootstrap-responsive.css
|
|
* 3. /theme/css/app.css
|
|
* 4. /child-theme/style.css (if a child theme is activated)
|
|
*
|
|
* Enqueue scripts in the following order:
|
|
* 1. /theme/js/vendor/modernizr-2.6.1.min.js (in head.php)
|
|
* 2. jquery-1.8.0.min.js via Google CDN (in head.php)
|
|
* 3. /theme/js/plugins.js
|
|
* 4. /theme/js/main.js
|
|
*/
|
|
|
|
function roots_scripts() {
|
|
wp_enqueue_style('roots_bootstrap', get_template_directory_uri() . '/css/bootstrap.css', false, null);
|
|
wp_enqueue_style('roots_bootstrap_responsive', get_template_directory_uri() . '/css/bootstrap-responsive.css', array('roots_bootstrap'), null);
|
|
wp_enqueue_style('roots_app', get_template_directory_uri() . '/css/app.css', false, null);
|
|
|
|
// Load style.css from child theme
|
|
if (is_child_theme()) {
|
|
wp_enqueue_style('roots_child', get_stylesheet_uri(), false, null);
|
|
}
|
|
|
|
// jQuery is loaded in header.php using the same method from HTML5 Boilerplate:
|
|
// Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline
|
|
// It's kept in the header instead of footer to avoid conflicts with plugins.
|
|
if (!is_admin()) {
|
|
wp_deregister_script('jquery');
|
|
wp_register_script('jquery', '', '', '', false);
|
|
}
|
|
|
|
if (is_single() && comments_open() && get_option('thread_comments')) {
|
|
wp_enqueue_script('comment-reply');
|
|
}
|
|
|
|
wp_register_script('roots_plugins', get_template_directory_uri() . '/js/plugins.js', false, null, false);
|
|
wp_register_script('roots_main', get_template_directory_uri() . '/js/main.js', false, null, false);
|
|
wp_enqueue_script('roots_plugins');
|
|
wp_enqueue_script('roots_main');
|
|
}
|
|
|
|
add_action('wp_enqueue_scripts', 'roots_scripts', 100);
|