Changeset 38928 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 10/25/2016 09:25:25 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r38863 r38928 170 170 $cats = get_the_category($post->ID); 171 171 if ( $cats ) { 172 usort($cats, '_usort_terms_by_ID'); // order by ID 172 $cats = wp_list_sort( $cats, array( 173 'term_id' => 'ASC', 174 ) ); 173 175 174 176 /**
Note: See TracChangeset
for help on using the changeset viewer.