20 lines
572 B
PHP
20 lines
572 B
PHP
<?php
|
|
/**
|
|
* understrap enqueue scripts
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
function understrap_scripts() {
|
|
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.4.2');
|
|
wp_enqueue_script('jquery');
|
|
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.4.2', true );
|
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
wp_enqueue_script( 'comment-reply' );
|
|
}
|
|
}
|
|
|
|
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
|
|
|