This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/inc/scripts.php

18 lines
765 B
PHP
Raw Normal View History

2014-12-19 09:34:34 +00:00
<?php
2015-09-09 08:58:25 +00:00
/**
* understrap - load the scripts
*
* @package understrap
*/
2014-12-19 09:34:34 +00:00
2015-01-06 07:37:26 +00:00
function understrap_scripts() {
wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.css', array(), '0.1', false );
wp_enqueue_script('jquery');
wp_enqueue_script( 'understrap-navigation', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '20120206', true );
wp_enqueue_script( 'understrap-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
2014-12-19 09:34:34 +00:00
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );