Changes from trunk/wp-includes/category-template.php at r18326 to branches/3.1/wp-includes/category-template.php at r17444
- File:
-
- 1 edited
-
branches/3.1/wp-includes/category-template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-includes/category-template.php
r18326 r17444 83 83 } 84 84 85 // Filter name is plural because we return alot of categories (possibly more than #13237)not just one85 // Filter name is plural because we return alot of categories not just one 86 86 return apply_filters( 'get_the_categories', $categories ); 87 87 } … … 534 534 $tags = get_terms( $args['taxonomy'], array_merge( $args, array( 'orderby' => 'count', 'order' => 'DESC' ) ) ); // Always query top tags 535 535 536 if ( empty( $tags ) || is_wp_error( $tags ))536 if ( empty( $tags ) ) 537 537 return; 538 538 … … 1065 1065 * Retrieve the terms of the taxonomy that are attached to the post. 1066 1066 * 1067 * This function can only be used within the loop. 1068 * 1067 1069 * @since 2.5.0 1068 1070 *
Note: See TracChangeset
for help on using the changeset viewer.