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/enqueue.php

27 lines
1.0 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
2015-09-09 08:58:25 +00:00
/**
2016-11-21 17:12:36 +00:00
* Understrap enqueue scripts
2015-09-09 08:58:25 +00:00
*
* @package understrap
*/
2014-12-10 11:36:38 +00:00
2016-11-21 17:12:36 +00:00
if ( ! function_exists( 'understrap_scripts' ) ) {
/**
* Load theme's JavaScript sources.
*/
2016-11-01 19:36:43 +00:00
function understrap_scripts() {
2017-01-27 13:26:46 +00:00
// Get the theme data.
$the_theme = wp_get_theme();
2017-10-23 10:21:08 +00:00
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), $the_theme->get( 'Version' ), false );
2017-11-24 07:31:05 +00:00
wp_register_script('jquery-slim', (get_template_directory_uri() . '/js/jquery.slim.min.js'), true, '3.2.1');
wp_enqueue_script( 'jquery-slim' );
2017-10-23 14:40:06 +00:00
wp_enqueue_script( 'popper-scripts', get_template_directory_uri() . '/js/popper.min.js', array(), true);
2017-08-11 18:14:01 +00:00
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $the_theme->get( 'Version' ), true );
2016-11-01 19:36:43 +00:00
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
2016-10-23 15:54:40 +00:00
}
2016-11-21 17:12:36 +00:00
} // endif function_exists( 'understrap_scripts' ).
2014-12-19 09:22:43 +00:00
2017-10-23 14:40:06 +00:00
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );