PluginProbe
Elementor Website Builder – more than just a page builder / 3.13.2
Elementor Website Builder – more than just a page builder v3.13.2
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 | modules/system-info/reporters/theme.php +3 -3 4.2.0-beta23.13.2 View file →
@@ -76,15 +76,15 @@
76 76 *
77 77 * Retrieve the theme.
78 78 *
79 79 * @since 1.0.0
80 - * @deprecated 3.1.0 Use `get_theme()` method instead.
81 80 * @access protected
81 + * @deprecated 3.1.0
82 82 *
83 83 * @return \WP_Theme WordPress theme object.
84 84 */
85 85 protected function _get_theme() {
86 - Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( __METHOD__, '3.1.0', 'get_theme()' );
86 + Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( __METHOD__, '3.1.0', __CLASS__ . '::get_theme()' );
87 87
88 88 return $this->get_theme();
89 89 }
90 90
@@ -203,9 +203,9 @@
203 203
204 204 if ( ! $is_child_theme ) {
205 205 $result['recommendation'] = sprintf(
206 206 /* translators: %s: WordPress child themes documentation. */
207 - __( 'If you want to modify the source code of your theme, we recommend using a <a href="%s">child theme</a>.', 'elementor' ),
207 + _x( 'If you want to modify the source code of your theme, we recommend using a <a href="%s">child theme</a>.', 'System Info', 'elementor' ),
208 208 'https://go.elementor.com/wordpress-child-themes/'
209 209 );
210 210 }
211 211