trailingslashit( GUTSLIDER_URL ) . 'assets/images/content.svg', 'photo_carousel' => trailingslashit( GUTSLIDER_URL ) . 'assets/images/photo.svg', 'testimonial_slider' => trailingslashit( GUTSLIDER_URL ) . 'assets/images/testimonial.svg', ] ); } /** * Enqueue Block Assets [ Editor + Frontend ] * return void */ public function enqueue_assets() { if( is_admin() ) { // swiper style wp_enqueue_style( 'swiper-style', trailingslashit( GUTSLIDER_URL ) . 'assets/css/swiper-bundle.min.css', [], GUTSLIDER_VERSION ); // swiper script wp_enqueue_script( 'swiper-script', trailingslashit( GUTSLIDER_URL ) . 'assets/js/swiper-bundle.min.js', [], GUTSLIDER_VERSION, true ); } // enqueue frontend scripts $swiper_scripts = get_option( 'swiper_scripts', true ); if( ! is_admin() && $swiper_scripts && ( has_block( 'gutsliders/content-slider' ) || has_block( 'gutsliders/any-content' ) || has_block( 'gutsliders/testimonial-slider' ) || has_block( 'gutsliders/post-slider' ) || has_block( 'gutsliders/photo-carousel' ) || has_block( 'gutsliders/logo-carousel' ) || has_block( 'gutsliders/contentspro' ) )) { // swiper style wp_enqueue_style( 'swiper-style', trailingslashit( GUTSLIDER_URL ) . 'assets/css/swiper-bundle.min.css', [], GUTSLIDER_VERSION ); // swiper script wp_enqueue_script( 'swiper-script', trailingslashit( GUTSLIDER_URL ) . 'assets/js/swiper-bundle.min.js', [], GUTSLIDER_VERSION, true ); } if( ! is_admin() && ( has_block( 'gutsliders/photo-carousel' ) )) { // lightbox wp_enqueue_script( 'gutslider-fslightbox', trailingslashit( GUTSLIDER_URL ) . 'assets/js/fslightbox.js', [], GUTSLIDER_VERSION, true ); } } } } new GutSlider_Assets(); // Initialize the class