Changeset 1737944
- Timestamp:
- 09/28/2017 07:05:06 PM (9 years ago)
- Location:
- word-count-wizard/trunk
- Files:
-
- 5 edited
-
admin/class-wcwizard-admin.php (modified) (1 diff)
-
includes/class-wcwizard.php (modified) (1 diff)
-
languages/wcwizard-es_ES.po (modified) (1 diff)
-
languages/wcwizard.pot (modified) (1 diff)
-
public/class-wcwizard-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
word-count-wizard/trunk/admin/class-wcwizard-admin.php
r1737937 r1737944 119 119 public function upgrade_link($links, $file ) { 120 120 121 if (strpos($file, 'w pwordcount.php') !== false) {121 if (strpos($file, 'wcwizard.php') !== false) { 122 122 123 123 $new_links = array( -
word-count-wizard/trunk/includes/class-wcwizard.php
r1737937 r1737944 173 173 $plugin_public = new wcwizard_Public( $this->get_plugin_name(), $this->get_version() ); 174 174 175 $this->loader->add_action( 'init', $plugin_public, 'w pwordcount_register_shortcodes' );175 $this->loader->add_action( 'init', $plugin_public, 'wcwizard_register_shortcodes' ); 176 176 177 177 } -
word-count-wizard/trunk/languages/wcwizard-es_ES.po
r1737937 r1737944 13 13 "X-Generator: Poedit 2.0.3\n" 14 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-WPHeader: w pwordcount.php\n"15 "X-Poedit-WPHeader: wcwizard.php\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -
word-count-wizard/trunk/languages/wcwizard.pot
r1737937 r1737944 13 13 "X-Generator: Poedit 1.8.9\n" 14 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-WPHeader: w pwordcount.php\n"15 "X-Poedit-WPHeader: wcwizard.php\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -
word-count-wizard/trunk/public/class-wcwizard-public.php
r1737937 r1737944 62 62 */ 63 63 64 public function w pwordcount_register_shortcodes() {64 public function wcwizard_register_shortcodes() { 65 65 66 66 function shortcode($atts) { … … 89 89 } 90 90 91 add_shortcode('w pwordcount', 'shortcode');91 add_shortcode('wcwizard', 'shortcode'); 92 92 } 93 93
Note: See TracChangeset
for help on using the changeset viewer.