2014-12-10 11:36:38 +00:00
|
|
|
|
<?php
|
2015-09-09 08:58:25 +00:00
|
|
|
|
/**
|
|
|
|
|
* understrap enqueue scripts
|
|
|
|
|
*
|
|
|
|
|
* @package understrap
|
|
|
|
|
*/
|
2014-12-10 11:36:38 +00:00
|
|
|
|
|
|
|
|
|
function understrap_scripts() {
|
2016-03-10 12:52:48 +00:00
|
|
|
|
wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.8');
|
2014-12-19 09:22:43 +00:00
|
|
|
|
|
2016-03-20 09:33:18 +00:00
|
|
|
|
// Unregister the default jQuery
|
2016-02-25 14:12:53 +00:00
|
|
|
|
wp_deregister_script('jquery');
|
2014-12-19 09:22:43 +00:00
|
|
|
|
|
2016-03-20 09:33:18 +00:00
|
|
|
|
|
|
|
|
|
wp_enqueue_script( 'understrap-main', get_template_directory_uri() . '/js/theme.min.js', array(), '0.3.8', true );
|
|
|
|
|
|
|
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-12-19 09:22:43 +00:00
|
|
|
|
|
2016-02-25 14:18:26 +00:00
|
|
|
|
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
|
|
|
|
|
|
|
|
|
|
// Removing the fuc!?$% emoji´s
|
|
|
|
|
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
|
|
|
|
|
remove_action( 'wp_print_styles', 'print_emoji_styles' );
|