responsive-tabs-for-elementor
Last commit date
assets
2 weeks ago
includes
2 weeks ago
widgets
2 weeks ago
widgets-templates
2 weeks ago
class-responsive-tabs-for-elementor.php
2 weeks ago
class-widgets.php
2 weeks ago
readme.txt
2 weeks ago
responsive-tabs-for-elementor.php
2 weeks ago
responsive-tabs-for-elementor.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Responsive Tabs For Elementor WordPress Plugin |
| 4 | * |
| 5 | * @package ResponsiveTabsForElementor |
| 6 | * |
| 7 | * Plugin Name: Responsive Tabs For Elementor |
| 8 | * Description: Responsive Tab Plugin for Elementor allows you to show multiple levels of tabs in accordion with text, images, ets. |
| 9 | * Plugin URI: |
| 10 | * Version: 11.0.1 |
| 11 | * Author: UAPP GROUP |
| 12 | * Author URI: https://uapp.group/ |
| 13 | * Requires PHP: 7.4.1 |
| 14 | * Requires at least: 5.9 |
| 15 | * Text Domain: responsive-tabs-for-elementor |
| 16 | */ |
| 17 | define('RESPONSIVE_TABS_FOR_ELEMENTOR', __FILE__); |
| 18 | |
| 19 | /** |
| 20 | * Plugin Version |
| 21 | * |
| 22 | * @since 11.0.1 |
| 23 | * @var string The plugin version. |
| 24 | */ |
| 25 | define('RESPONSIVE_TABS_VERSION', '11.0.1'); |
| 26 | |
| 27 | /** |
| 28 | * Include the Responsive_Tabs_For_Elementor class. |
| 29 | */ |
| 30 | require plugin_dir_path(RESPONSIVE_TABS_FOR_ELEMENTOR) . 'class-responsive-tabs-for-elementor.php'; |
| 31 |