enqueu theme.min.js in footer

This commit is contained in:
Holger Könemann 2017-08-11 20:14:01 +02:00
parent 4bf73a8890
commit 0b825c0621
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ if ( ! function_exists( 'understrap_scripts' ) ) {
$the_theme = wp_get_theme();
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), $the_theme->get( 'Version' ) );
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $the_theme->get( 'Version' ), false );
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $the_theme->get( 'Version' ), true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}