Changeset 1846544
- Timestamp:
- 03/25/2018 03:29:41 PM (8 years ago)
- Location:
- page-generator/trunk
- Files:
-
- 3 edited
-
includes/admin/generate.php (modified) (2 diffs)
-
page-generator.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
page-generator/trunk/includes/admin/generate.php
r1840658 r1846544 303 303 $this->searches = array( 304 304 '{' . $keyword . '}', // Keyword Term 305 '{' . $keyword . ':uppercase_all}', // Keyword Term, uppercase306 '{' . $keyword . ':lowercase_all}', // Keyword Term, lowercase307 '{' . $keyword . ':uppercase_first_character}', // Keyword Term, first char uppercase308 '{' . $keyword . ':uppercase_first_character_words}', // Keyword Term, first char of each word uppercase309 '{' . $keyword . ':url}', // Keyword Term, as a URL / permalink friendly string310 305 ); 311 306 $this->replacements = array( 312 307 $term, 313 strtoupper( $term ),314 strtolower( $term ),315 ucfirst( $term ),316 ucwords( $term ),317 sanitize_title( $term ),318 308 ); 319 309 … … 713 703 } 714 704 715 // If $item is a string, spintax it716 if ( is_string( $item ) ) {717 $item = Page_Generator_Pro_Spintax::get_instance()->process( $item );718 }719 720 705 } 721 706 -
page-generator/trunk/page-generator.php
r1840658 r1846544 3 3 * Plugin Name: Page Generator 4 4 * Plugin URI: http://www.wpzinc.com/plugins/page-generator-pro 5 * Version: 1.4. 45 * Version: 1.4.5 6 6 * Author: WP Zinc 7 7 * Author URI: http://www.wpzinc.com … … 57 57 $this->plugin->name = 'page-generator'; 58 58 $this->plugin->displayName = 'Page Generator'; 59 $this->plugin->version = '1.4. 4';60 $this->plugin->buildDate = '2018-03- 15 18:00:00';59 $this->plugin->version = '1.4.5'; 60 $this->plugin->buildDate = '2018-03-25 18:00:00'; 61 61 $this->plugin->requires = 3.6; 62 62 $this->plugin->tested = '4.9.4'; -
page-generator/trunk/readme.txt
r1840667 r1846544 81 81 == Changelog == 82 82 83 = 1.4.5 = 84 * Fix: Generate: Fatal error when using certain Themes 85 83 86 = 1.4.4 = 84 87 * Added: Post Type Template Support (WordPress 4.7+)
Note: See TracChangeset
for help on using the changeset viewer.