Changeset 2173658
- Timestamp:
- 10/15/2019 12:01:44 PM (6 years ago)
- Location:
- content-repeater/trunk
- Files:
-
- 2 edited
-
content-repeater.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
content-repeater/trunk/content-repeater.php
r2173627 r2173658 3 3 * Plugin Name: Content Repeater 4 4 * Description: Quickly set up custom content like Testimonials, Coupons, Products, Flipboxes, Portals, Portfolios, Before & Afters, etc. and display it in interesting ways: Ajax Reload, Masonry, Isotope, Slick Slider, Single Row. 5 * Version: 1.1. 05 * Version: 1.1.1 6 6 * Author: Denis Buka 7 7 * Text Domain: content-repeater … … 651 651 array( 'Rptr_Template_Single_Editor', 'create_template_single_page' ) 652 652 ); 653 } 654 if( preg_match_all( self::$pat, $v['template'], $matches ) 655 || preg_match_all( self::$pat, $v['template_single'], $matches_single ) ) { // if Template with tags exists 653 } 654 $template_matches = preg_match_all( self::$pat, $v['template'], $matches ); 655 $template_single_matches = preg_match_all( self::$pat, $v['template_single'], $matches_single ); 656 if( $template_matches || $template_single_matches ) { // if Template with tags exists 656 657 add_submenu_page( // register Repeaters pages 657 658 'edit.php?post_type=' . $type, -
content-repeater/trunk/readme.txt
r2173627 r2173658 112 112 = 1.1.0 = 113 113 fixes and improvements 114 = 1.1.1 = 115 fix meta boxes missing when no meta in Template
Note: See TracChangeset
for help on using the changeset viewer.