__CLASS__, 'attributes' => $attributes, 'block_ids' => self::$block_ids, ] ); if ( ! wp_style_is( 'generateblocks-tabs', 'enqueued' ) ) { self::enqueue_style(); } if ( ! wp_script_is( 'generateblocks-tabs', 'enqueued' ) ) { self::enqueue_assets(); } return $block_content; } /** * Enqueue block styles. */ private static function enqueue_style() { wp_enqueue_style( 'generateblocks-tabs', GENERATEBLOCKS_PRO_DIR_URL . 'dist/blocks/tabs/tabs.css', [], GENERATEBLOCKS_PRO_VERSION ); } /** * Enqueue block scripts. */ private static function enqueue_scripts() { wp_enqueue_script( 'generateblocks-tabs', GENERATEBLOCKS_PRO_DIR_URL . 'dist/tabs.js', [], GENERATEBLOCKS_PRO_VERSION, true ); } /** * Enqueue block assets. */ public static function enqueue_assets() { self::enqueue_scripts(); self::enqueue_style(); } }