PluginProbe
Elementor Website Builder – more than just a page builder / 3.34.3
Elementor Website Builder – more than just a page builder v3.34.3
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | elementor.php +6 -17 4.2.13.34.3 View file →
@@ -1,14 +1,14 @@
1 1 <?php
2 2 /**
3 3 * Plugin Name: Elementor
4 - * Description: The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile responsive editing, and more. Get started now!
4 + * Description: The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!
5 5 * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
6 - * Version: 4.2.1
6 + * Version: 3.34.3
7 7 * Author: Elementor.com
8 8 * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
9 9 * Requires PHP: 7.4
10 - * Requires at least: 6.8
10 + * Requires at least: 6.6
11 11 * Text Domain: elementor
12 12 *
13 13 * @package Elementor
14 14 * @category Core
@@ -27,10 +27,9 @@
27 27 if ( ! defined( 'ABSPATH' ) ) {
28 28 exit; // Exit if accessed directly.
29 29 }
30 30
31 -define( 'ELEMENTOR_VERSION', '4.2.1' );
32 -define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' );
31 +define( 'ELEMENTOR_VERSION', '3.34.3' );
33 32
34 33 define( 'ELEMENTOR__FILE__', __FILE__ );
35 34 define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) );
36 35 define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) );
@@ -54,21 +53,11 @@
54 53 // We need this file because of the DI\create function that we are using.
55 54 // Autoload classmap doesn't include this file.
56 55 }
57 56
58 -$deprecation_func_file = ELEMENTOR_PATH . 'vendor_prefixed/twig/symfony/deprecation-contracts/function.php';
59 -if ( file_exists( $deprecation_func_file ) ) {
60 - require_once $deprecation_func_file;
61 - if ( ! function_exists( 'trigger_deprecation' ) ) {
62 - function trigger_deprecation( string $package, string $version, string $message, ...$args ): void {
63 - \ElementorDeps\trigger_deprecation( $package, $version, $message, ...$args );
64 - }
65 - }
66 -}
67 -
68 57 if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) {
69 58 add_action( 'admin_notices', 'elementor_fail_php_version' );
70 -} elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) {
59 +} elseif ( ! version_compare( get_bloginfo( 'version' ), '6.5', '>=' ) ) {
71 60 add_action( 'admin_notices', 'elementor_fail_wp_version' );
72 61 } else {
73 62 require ELEMENTOR_PATH . 'includes/plugin.php';
74 63 }
@@ -112,9 +101,9 @@
112 101 esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ),
113 102 sprintf(
114 103 /* translators: %s: WordPress version. */
115 104 esc_html__( 'Update to version %s and get back to creating!', 'elementor' ),
116 - ELEMENTOR_MINIMUM_WP_VERSION
105 + '6.5'
117 106 ),
118 107 esc_html__( 'Show me how', 'elementor' )
119 108 );
120 109