| Server IP : 10.19.1.101 / Your IP : 216.73.216.158 Web Server : Apache System : Linux web1f13.kinghost.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64 User : schererimoveisrs ( 170628) PHP Version : 7.4.33 Disable Function : apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/schererimoveisrs/www/wp-content/themes/sleeky/framework/scripts/ |
Upload File : |
<?php
class Sleeky_Scripts {
public function __construct() {
add_action( 'wp_enqueue_scripts', array( $this, 'sleeky_enqueue_scripts' ) );
}
public function sleeky_enqueue_scripts() {
wp_enqueue_script( 'popper', SLEEKY_JS_URL . 'popper.min.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'bootstrap', SLEEKY_JS_URL . 'bootstrap.min.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'swiper', SLEEKY_JS_URL . 'swiper.min.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'wow', SLEEKY_JS_URL . 'wow.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'jquery-fancybox', SLEEKY_JS_URL . 'jquery.fancybox.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'appear', SLEEKY_JS_URL . 'appear.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'scrollbar', SLEEKY_JS_URL . 'scrollbar.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'jquery-nice-select', SLEEKY_JS_URL . 'jquery.nice-select.min.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'nav-tool', SLEEKY_JS_URL . 'nav-tool.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'isotope', SLEEKY_JS_URL . 'isotope.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'text_animation', SLEEKY_JS_URL . 'text_animation.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'text_plugins', SLEEKY_JS_URL . 'text_plugins.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'jquery-bootstrap-touchspin', SLEEKY_JS_URL . 'jquery.bootstrap-touchspin.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'sleeky-countdown', SLEEKY_JS_URL . 'countdown.js', array( 'jquery' ), time(), true );
wp_enqueue_script( 'sleeky-script', SLEEKY_JS_URL . 'script.js', array( 'jquery' ), time(), true );
wp_localize_script(
'sleeky-script',
'sleeky_ajax_localize',
array(
'ajax_url' => admin_url( 'admin-ajax.php' ),
'woocommerce_cart_redirect_after_add' => get_option( 'woocommerce_cart_redirect_after_add' ),
)
);
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
}
$sleeky_scripts = new Sleeky_Scripts();