PluginProbe
Elementor Website Builder – more than just a page builder / 3.0.6
Elementor Website Builder – more than just a page builder v3.0.6
4.3.0-beta3 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 All 452 releases
← All changes | includes/editor-templates/editor-wrapper.php +35 -12 4.2.23.0.6 View file →
@@ -26,24 +26,47 @@
26 26 <html <?php language_attributes(); ?>>
27 27 <head>
28 28 <meta charset="utf-8" />
29 29 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
30 - <title><?php printf(
31 - /* translators: %s: Page title. */
32 - esc_html__( 'Edit "%s" with Elementor', 'elementor' ),
33 - esc_html( get_the_title() )
34 - ); ?></title>
30 + <title><?php echo __( 'Elementor', 'elementor' ) . ' | ' . get_the_title(); ?></title>
35 31 <?php wp_head(); ?>
36 32 <script>
37 - var ajaxurl = '<?php Utils::print_unescaped_internal_string( admin_url( 'admin-ajax.php', 'relative' ) ); ?>';
33 + var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>';
38 34 </script>
39 35 </head>
40 -<body class="<?php echo esc_attr( implode( ' ', $body_classes ) ); ?>">
41 -<?php
42 -if ( isset( $body_file_path ) ) {
43 - include $body_file_path;
44 -}
45 -?>
36 +<body class="<?php echo implode( ' ', $body_classes ); ?>">
37 +<div id="elementor-editor-wrapper">
38 + <div id="elementor-panel" class="elementor-panel"></div>
39 + <div id="elementor-preview">
40 + <div id="elementor-loading">
41 + <div class="elementor-loader-wrapper">
42 + <div class="elementor-loader">
43 + <div class="elementor-loader-boxes">
44 + <div class="elementor-loader-box"></div>
45 + <div class="elementor-loader-box"></div>
46 + <div class="elementor-loader-box"></div>
47 + <div class="elementor-loader-box"></div>
48 + </div>
49 + </div>
50 + <div class="elementor-loading-title"><?php echo __( 'Loading', 'elementor' ); ?></div>
51 + </div>
52 + </div>
53 + <div id="elementor-preview-responsive-wrapper" class="elementor-device-desktop elementor-device-rotate-portrait">
54 + <div id="elementor-preview-loading">
55 + <i class="eicon-loading eicon-animation-spin" aria-hidden="true"></i>
56 + </div>
57 + <?php if ( $notice ) { ?>
58 + <div id="elementor-notice-bar">
59 + <i class="eicon-elementor-square"></i>
60 + <div id="elementor-notice-bar__message"><?php echo sprintf( $notice['message'], $notice['action_url'] ); ?></div>
61 + <div id="elementor-notice-bar__action"><a href="<?php echo $notice['action_url']; ?>" target="_blank"><?php echo $notice['action_title']; ?></a></div>
62 + <i id="elementor-notice-bar__close" class="eicon-close"></i>
63 + </div>
64 + <?php } // IFrame will be created here by the Javascript later. ?>
65 + </div>
66 + </div>
67 + <div id="elementor-navigator"></div>
68 +</div>
46 69 <?php
47 70 wp_footer();
48 71 /** This action is documented in wp-admin/admin-footer.php */
49 72 do_action( 'admin_print_footer_scripts' );