2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
2015-09-09 08:58:25 +00:00
|
|
|
/**
|
2019-07-18 16:21:25 +00:00
|
|
|
* UnderStrap enqueue scripts
|
2015-09-09 08:58:25 +00:00
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2019-06-20 08:57:12 +00:00
|
|
|
// Exit if accessed directly.
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
2018-09-10 21:59:04 +00:00
|
|
|
|
2016-11-21 17:12:36 +00:00
|
|
|
if ( ! function_exists( 'understrap_scripts' ) ) {
|
|
|
|
/**
|
2018-04-12 04:30:49 +00:00
|
|
|
* Load theme's JavaScript and CSS sources.
|
2016-11-21 17:12:36 +00:00
|
|
|
*/
|
2016-11-01 19:36:43 +00:00
|
|
|
function understrap_scripts() {
|
2018-07-06 06:55:44 +00:00
|
|
|
// Get the theme data.
|
2018-11-18 23:40:25 +00:00
|
|
|
$the_theme = wp_get_theme();
|
2018-07-06 06:55:44 +00:00
|
|
|
$theme_version = $the_theme->get( 'Version' );
|
2018-11-18 23:40:25 +00:00
|
|
|
|
|
|
|
$css_version = $theme_version . '.' . filemtime( get_template_directory() . '/css/theme.min.css' );
|
2019-04-14 05:01:02 +00:00
|
|
|
wp_enqueue_style( 'understrap-styles', get_template_directory_uri() . '/css/theme.min.css', array(), $css_version );
|
2018-04-06 17:43:18 +00:00
|
|
|
|
2018-11-18 23:40:25 +00:00
|
|
|
wp_enqueue_script( 'jquery' );
|
|
|
|
|
|
|
|
$js_version = $theme_version . '.' . filemtime( get_template_directory() . '/js/theme.min.js' );
|
2018-07-06 06:55:44 +00:00
|
|
|
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $js_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
|
|
|
}
|
2020-04-19 10:08:39 +00:00
|
|
|
} // End of if function_exists( 'understrap_scripts' ).
|
2014-12-19 09:22:43 +00:00
|
|
|
|
2018-11-18 23:40:25 +00:00
|
|
|
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
|