Changeset 9506 for trunk/wp-includes/category.php
- Timestamp:
- 11/04/2008 03:22:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category.php
r9080 r9506 278 278 $tags = get_terms( 'post_tag', $args ); 279 279 280 if ( empty( $tags ) ) 281 return array(); 280 if ( empty( $tags ) ) { 281 $return = array(); 282 return $return; 283 } 282 284 283 285 $tags = apply_filters( 'get_tags', $tags, $args );
Note: See TracChangeset
for help on using the changeset viewer.