__CLASS__, 'attributes' => $attributes, 'block_ids' => self::$block_ids, ] ); return $block_content; } /** * Enqueue frontend scripts for the carousel. */ private static function enqueue_scripts() { wp_enqueue_script( 'generateblocks-carousel', GENERATEBLOCKS_PRO_DIR_URL . 'dist/carousel.js', [], GENERATEBLOCKS_PRO_VERSION, true ); } /** * Enqueue frontend styles for the carousel. */ private static function enqueue_styles() { wp_enqueue_style( 'generateblocks-carousel', GENERATEBLOCKS_PRO_DIR_URL . 'dist/carousel-style.css', [], GENERATEBLOCKS_PRO_VERSION ); } /** * Enqueue block assets. */ public static function enqueue_assets() { self::enqueue_scripts(); self::enqueue_styles(); } }