PluginProbe ʕ •ᴥ•ʔ
Responsive Tabs For Elementor / trunk
Responsive Tabs For Elementor vtrunk
11.0.1 trunk 1.0.0 10.0.0 10.0.1 10.0.2 10.1.0 11.0.0 2.0.0 3.0.0 3.9.2 4.0.0 5.0.1 6.0.0 7.0.0 7.1.0 8.0.0 9.0.0 9.1.0 9.1.1 9.2.0 9.3.0 9.3.1 9.3.2
responsive-tabs-for-elementor / responsive-tabs-for-elementor.php
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