Changeset 5231
- Timestamp:
- 04/10/07 18:30:55 (2 years ago)
- Files:
-
- trunk/wp-includes/category-template.php (modified) (1 diff)
- trunk/wp-includes/post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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
