Changeset 1919529
- Timestamp:
- 08/03/2018 05:41:58 PM (8 years ago)
- Location:
- page-siblings/trunk
- Files:
-
- 2 edited
-
page-siblings.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
page-siblings/trunk/page-siblings.php
r1692418 r1919529 5 5 Description: Add a metabox with all page edit (and any other hierarchal post types) that display an edit link to its siblings. 6 6 Author: Ionuț Staicu 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author URI: http://iamntz.com 9 9 */ … … 103 103 $this->print_child( $child, $prefix ); 104 104 105 if( count( $sub_children = $this->get_children( $child->ID, $post_type ) ) > 0 ){ 105 $sub_children = $this->get_children( $child->ID, $post_type ); 106 if( !empty($sub_children) ){ 106 107 $this->loop_through_children( $child->ID, $post_type, $prefix . "—" ); 107 108 } -
page-siblings/trunk/readme.txt
r1692418 r1919529 54 54 = 1.0.6 = 55 55 * Version Bump 56 57 = 1.0.7 = 58 * PHP 7.2 compatibility fix
Note: See TracChangeset
for help on using the changeset viewer.