| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: MarqueeAll – Elementor Marquee for Image, Text, Post Grid, Testimonial, Cryptocurrency & News Ticker 🌀 |
| 4 |
* Description: All-in-one Elementor marquee addon for scrolling text, images, posts, testimonials, cryptocurrency price ticker, and news ticker widgets. |
| 5 |
* Version: 1.2.0 |
| 6 |
* Author: Aman Brar |
| 7 |
* Author URI: https://profiles.wordpress.org/amandeepwebspero/ |
| 8 |
* License: GPL-2.0-or-later |
| 9 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 10 |
* Requires at least: 5.8 |
| 11 |
* Requires PHP: 7.4 |
| 12 |
* Tested up to: 6.9 |
| 13 |
* Text Domain: marqueeall |
| 14 |
* Requires Plugins: elementor |
| 15 |
* |
| 16 |
* @package MarqueeAll |
| 17 |
*/ |
| 18 |
|
| 19 |
if ( ! defined( 'ABSPATH' ) ) { |
| 20 |
exit; // Exit if accessed directly.s |
| 21 |
} |
| 22 |
|
| 23 |
define( 'MASSCIE_VERSION', '1.1.0' ); |
| 24 |
define( 'MASSCIE_PATH', plugin_dir_path( __FILE__ ) ); |
| 25 |
define( 'MASSCIE_URL', plugin_dir_url( __FILE__ ) ); |
| 26 |
|
| 27 |
// Load the core plugin file. |
| 28 |
require_once MASSCIE_PATH . 'includes/plugin.php'; |
| 29 |
|