PluginProbe
Powerkit – Supercharge your WordPress Site / 2.9.0
Powerkit – Supercharge your WordPress Site v2.9.0
3.1.1 3.1.0 3.0.9 3.0.8 trunk 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 All 87 releases
← All changes | modules/basic-elements/class-powerkit-basic-elements.php +3 -3 trunk2.9.0 View file →
@@ -15,10 +15,10 @@
15 15 /**
16 16 * Register module
17 17 */
18 18 public function register() {
19 - $this->name = powerkit_esc_html__( 'Basic Elements', 'powerkit' );
20 - $this->desc = powerkit_esc_html__( 'Basic shortcodes with a shortcode generator right in the WordPress editor.', 'powerkit' );
19 + $this->name = esc_html__( 'Basic Elements', 'powerkit' );
20 + $this->desc = esc_html__( 'Basic shortcodes with a shortcode generator right in the WordPress editor.', 'powerkit' );
21 21 $this->slug = 'basic_elements';
22 22 $this->type = 'default';
23 23 $this->category = 'basic';
24 24 $this->priority = 80;
@@ -26,9 +26,9 @@
26 26 $this->enabled = true;
27 27
28 28 $this->links = array(
29 29 array(
30 - 'name' => powerkit_esc_html__( 'View documentation', 'powerkit' ),
30 + 'name' => esc_html__( 'View documentation', 'powerkit' ),
31 31 'url' => powerkit_get_setting( 'documentation' ) . '/content-presentation/basic-elements/',
32 32 'target' => '_blank',
33 33 ),
34 34 );