Make WordPress Core

Changeset 5231


Ignore:
Timestamp:
04/10/2007 06:30:55 PM (16 years ago)
Author:
ryan
Message:

s/get_post_tags/wp_get_post_tags/ to match the rest of the API.

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/category-template.php

    r5197 r5231  
    184184        return false; // in-the-loop function
    185185
    186     $tags = get_post_tags( $post->ID );
     186    $tags = wp_get_post_tags( $post->ID );
    187187    if ( empty( $tags ) )
    188188        return false;
  • trunk/wp-includes/post.php

    r5212 r5231  
    459459}
    460460
    461 function get_post_tags( $post_id = 0 ) {
     461function wp_get_post_tags( $post_id = 0 ) {
    462462    global $tag_cache, $blog_id;
    463463
Note: See TracChangeset for help on using the changeset viewer.