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

44 lines
1.3 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
2018-05-02 10:27:12 +00:00
/**
* @param string $filename
* @return string
*/
function asset_path($filename) {
$manifest_path = get_stylesheet_directory_uri() .'/rev-manifest.json';
2018-05-05 07:47:03 +00:00
if ( file_exists($manifest_path ) ) {
$manifest = json_decode( file_get_contents( $manifest_path ), TRUE );
2018-05-02 10:27:12 +00:00
} else {
$manifest = [];
}
2018-05-05 07:47:03 +00:00
if ( array_key_exists( $filename, $manifest ) ) {
2018-05-02 10:27:12 +00:00
return $manifest[$filename];
}
return $filename;
}
2016-11-21 17:12:36 +00:00
if ( ! function_exists( 'understrap_scripts' ) ) {
/**
* 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-05-02 10:27:12 +00:00
2018-05-05 07:47:03 +00:00
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/'. asset_path('css/theme.min.css'), array(), null);
2017-12-14 08:22:42 +00:00
wp_enqueue_script( 'jquery');
2018-05-02 10:27:12 +00:00
wp_enqueue_script( 'popper-scripts', get_template_directory_uri() . '/js/popper.min.js', array(), false, true);
2018-05-05 07:47:03 +00:00
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/' . asset_path('js/theme.min.js'), array(), null, 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' );