get_lastcommentmodified [ WordPress Function ]
get_lastcommentmodified ( $timezone = 'server' )
| Parameters: |
|
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: get_lastpostmodified, get_comment_id_fields, get_comment_id, get_comment_date, get_comment_guid
The date the last comment was modified.
Source
<?php
function get_lastcommentmodified($timezone = 'server') {
global $cache_lastcommentmodified, $wpdb;
if ( isset($cache_lastcommentmodified[$timezone]) )
return $cache_lastcommentmodified[$timezone];
$add_seconds_server = date('Z');
switch ( strtolower($timezone)) {
case 'gmt':
$lastcommentmodified = $wpdb->get_var("SELECT comment_date_gmt FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1");
break;
case 'blog':
$lastcommentmodified = $wpdb->get_var("SELECT comment_date FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1");
break;
case 'server':
$lastcommentmodified = $wpdb->get_var($wpdb->prepare("SELECT DATE_ADD(comment_date_gmt, INTERVAL %s SECOND) FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1", $add_seconds_server));
break;
}
$cache_lastcommentmodified[$timezone] = $lastcommentmodified;
return $lastcommentmodified;
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/get lastcommentmodified « WordPress Codex
Description. The date the last comment was modified. If $ cache_lastcommentmodified is set this function returns its value from the cache without hitting the ...
codex.wordpress.org - #13066 (Last-Modified headers for individual comment feeds are ...
The WP::send_headers function currently uses get_lastcommentmodified() to set the Last-Modified header for all comment feeds. This is a problem when used ...
core.trac.wordpress.org - 常用函数-get_lastcommentmodified() | WordPress啦!
2009年4月13日 ... 常用函数-get_lastcommentmodified(). 说明. 最近一次评论修改日期。设置$ cache_lastcommentmodified参数后,该函数可从缓存中返回值而不必 ...
www.wordpress.la - functions - Comments RSS Feed showing repeating title ...
Feb 15, 2011 ... description> <lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate> <sy:updatePeriod><?php echo ...
wordpress.stackexchange.com