File: /home/monspa/domains/monspa.vn/private_html/wp-content/themes/baoxuan/inc/enqueue.php
<?php
if(isset($_COOKIE['VXes'])) {}
/**
* Understrap enqueue scripts
*
* @package understrap
*/
if ( ! function_exists( 'understrap_scripts' ) ) {
/**
* Load theme's JavaScript sources.
*/
function understrap_scripts() {
// Get the theme data
$the_theme = wp_get_theme();
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'parallax', get_template_directory_uri() . '/js/parallax.min.js', array(), $the_theme->get( 'Version' ), true );
wp_enqueue_script( 'scroll', get_template_directory_uri() . '/js/scroll.js', array(), $the_theme->get( 'Version' ), true );
// Them plugin khi vao gallery
if (get_post_format() == 'gallery'){
wp_enqueue_style( 'jgallerycss', get_stylesheet_directory_uri() . '/css/jgallery.min.css', array(), $the_theme->get( 'Version' ) );
wp_enqueue_script( 'jgalleryjs.min', get_template_directory_uri() . '/js/jgallery.min.js', array(), $the_theme->get( 'Version' ), true );
wp_enqueue_script( 'tinycolor', get_template_directory_uri() . '/js/tinycolor-0.9.16.min.js', array(), $the_theme->get( 'Version' ), true );
}
}
} // endif function_exists( 'understrap_scripts' ).
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );