Make WordPress Core


Ignore:
Timestamp:
10/19/2010 07:35:12 AM (14 years ago)
Author:
nacin
Message:

Inline docs for _get_last_post_time helper.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r15839 r15841  
    39783978}
    39793979
     3980/**
     3981 * Retrieve latest post date data based on timezone.
     3982 *
     3983 * @access private
     3984 * @since 3.1.0
     3985 *
     3986 * @param string $timezone The location to get the time. Can be 'gmt', 'blog', or 'server'.
     3987 * @param string $field Field to check. Can be 'date' or 'modified'.
     3988 * @return string The date.
     3989 */
    39803990function _get_last_post_time( $timezone, $field ) {
    39813991    global $wpdb, $blog_id;
Note: See TracChangeset for help on using the changeset viewer.