Changeset 5231
- Timestamp:
- 04/10/2007 06:30:55 PM (16 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r5197 r5231 184 184 return false; // in-the-loop function 185 185 186 $tags = get_post_tags( $post->ID );186 $tags = wp_get_post_tags( $post->ID ); 187 187 if ( empty( $tags ) ) 188 188 return false; -
trunk/wp-includes/post.php
r5212 r5231 459 459 } 460 460 461 function get_post_tags( $post_id = 0 ) {461 function wp_get_post_tags( $post_id = 0 ) { 462 462 global $tag_cache, $blog_id; 463 463
Note: See TracChangeset
for help on using the changeset viewer.