Changeset 2463688
- Timestamp:
- 01/27/2021 04:15:23 PM (5 years ago)
- Location:
- content-repeater/trunk
- Files:
-
- 2 edited
-
content-repeater.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
content-repeater/trunk/content-repeater.php
r2415544 r2463688 3 3 * Plugin Name: Content Repeater 4 4 * Description: A tool to quickly set up custom content types and display them in interesting ways. 5 * Version: 1.1. 95 * Version: 1.1.10 6 6 * Author: Denis Buka 7 7 * Text Domain: content-repeater … … 677 677 || strpos($field, 'post_content') === 0 678 678 || strpos($field, 'post_image') === 0 679 || strpos($field, 'site_url') === 0 679 680 ) { 680 681 continue; … … 740 741 if( in_array( $field[0], $used ) ) continue; 741 742 $used[] = $field[0]; 742 if( !in_array( $field[0], array( 'post_title', 'post_content', 'post_image', 'post_id', 'post_url' ) ) ) {743 if( !in_array( $field[0], array( 'post_title', 'post_content', 'post_image', 'post_id', 'post_url', 'site_url' ) ) ) { 743 744 echo '<label class="cr-field-label">' . $field[0] . '</label>'; 744 745 } -
content-repeater/trunk/readme.txt
r2462404 r2463688 124 124 = 1.1.9 = 125 125 updated readme.txt 126 = 1.1.10 = 127 remove site_url label from editor
Note: See TracChangeset
for help on using the changeset viewer.