Welcome, visitor! Log in
 

Source View: get_lastpostdate

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3911                     break;
3912                case 'server':
3913                     $lastpostdate = $wpdb->get_var("SELECT DATE_ADD(post_date_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_date_gmt DESC LIMIT 1");
3914                     break;
3915           }
3916           $cache_lastpostdate[$blog_id][$timezone] = $lastpostdate;
3917      } else {
3918           $lastpostdate = $cache_lastpostdate[$blog_id][$timezone];
3919      }
3920      return apply_filters( 'get_lastpostdate', $lastpostdate, $timezone );
3921 }
3922
3923 /**
3924  * Retrieve last post modified date depending on timezone.
3925  *
3926  * The server timezone is the default and is the difference between GMT and
3927  * server time. The 'blog' value is just when the last post was modified. The
3928  * 'gmt' is when the last post was modified in GMT time.
3929  *