Changeset 36005 for trunk/src/wp-includes/category-template.php
- Timestamp:
- 12/18/2015 06:11:44 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/category-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r35984 r36005 551 551 552 552 if ( $r['exclude_tree'] ) { 553 $exclude_tree = array_merge( $exclude_tree, (array) $r['exclude_tree']);553 $exclude_tree = array_merge( $exclude_tree, wp_parse_id_list( $r['exclude_tree'] ) ); 554 554 } 555 555 556 556 if ( $r['exclude'] ) { 557 $exclude_tree = array_merge( $exclude_tree, (array) $r['exclude']);557 $exclude_tree = array_merge( $exclude_tree, wp_parse_id_list( $r['exclude'] ) ); 558 558 } 559 559
Note: See TracChangeset
for help on using the changeset viewer.