Changeset 46137
- Timestamp:
- 09/15/2019 11:34:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r46088 r46137 177 177 178 178 // Put checked cats on top 179 $output .= call_user_func_array( array( $walker, 'walk' ), array( $checked_categories, 0, $args ));179 $output .= $walker->walk( $checked_categories, 0, $args ); 180 180 } 181 181 // Then the rest of them 182 $output .= call_user_func_array( array( $walker, 'walk' ), array( $categories, 0, $args ));182 $output .= $walker->walk( $categories, 0, $args ); 183 183 184 184 if ( $parsed_args['echo'] ) {
Note: See TracChangeset
for help on using the changeset viewer.