52 lines
2.7 KiB
PHP
52 lines
2.7 KiB
PHP
<?php
|
|
add_action( 'wp_enqueue_scripts', 'armanty_get_scripts');
|
|
|
|
function armanty_get_scripts(){
|
|
$js = $GLOBALS['paths']['js'];
|
|
$libs = $GLOBALS['paths']['libs'];
|
|
|
|
wp_deregister_script( 'jquery' );
|
|
wp_register_script( 'jquery', $libs . '/jquery-3.4.1/jquery-3.4.1.min.js');
|
|
wp_enqueue_script('jquery');
|
|
|
|
wp_enqueue_script( 'jqmask', $libs . '/jQuery-Mask-Plugin-master/dist/jquery.mask.min.js', ['jquery'], null, true);
|
|
|
|
if (!is_page_template('templates/graduation.php')) {
|
|
wp_enqueue_script( 'poper', $libs . '/bootstrap-4.4.1-dist/js/popper.min.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'bootstrap', $libs . '/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'owlcarousel', $libs . '/OwlCarousel2-2.3.4/dist/owl.carousel.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'moment', $libs . '/bootstrap_datetimepicker/js/moment-with-locales.min.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'bootstrap', $libs . '/bootstrap_datetimepicker/js/bootstrap.min.js', ['jquery', 'moment'], null, true);
|
|
wp_enqueue_script( 'dtpicker', $libs . '/bootstrap_datetimepicker/js/bootstrap-datetimepicker.min.js', ['jquery', 'moment'], null, true);
|
|
wp_enqueue_script( 'select', $libs . '/bootstrap-select/bootstrap-select.min.js');
|
|
wp_enqueue_script( 'script', $js . '/script.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'slider', $libs . '/jQuery-Waterwheel-Carousel/js/jquery.waterwheelCarousel.min.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'swiper', $libs . '/jQueryTouchSwipe/jquery.touchSwipe.min.js', ['jquery'], null, true);
|
|
wp_enqueue_script( 'slick', 'https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.js', ['jquery'], null, true);
|
|
|
|
|
|
if(is_front_page() || is_page ('24') || is_page('35') || is_page('56')){
|
|
wp_enqueue_script( 'main', $js . '/components/main.js', ['jquery'], null, true);
|
|
}
|
|
if(is_page ('8')){
|
|
wp_enqueue_script( 'quests', $js . '/components/quests.js', ['jquery'], null, true);
|
|
}
|
|
if(is_page ('24')){
|
|
wp_enqueue_script( 'quests', $js . '/components/holiday.js', ['jquery'], null, true);
|
|
}
|
|
if(is_page ('35')){
|
|
wp_enqueue_script( 'certificates', $js . '/components/certificates.js', ['jquery'], null, true);
|
|
}
|
|
if(is_page ('56')){
|
|
wp_enqueue_script( 'sales', $js . '/components/sales.js', ['jquery'], null, true);
|
|
}
|
|
if(is_page ('59')){
|
|
wp_enqueue_script( 'form', $js . '/components/form.js', ['jquery'], null, true);
|
|
}
|
|
}
|
|
|
|
if (is_page_template('templates/graduation.php')) {
|
|
wp_enqueue_script( 'graduation', $js . '/components/graduation.js');
|
|
}
|
|
};
|
|
?>
|