有关评论:
function count_comments_in_period( $date_from, $date_to ){
global $wpdb;
$count = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->comments} WHERE comment_date >= %s AND comment_date < %s ", $date_from, $date_to));
return $count;
}
只需在中使用日期
yyyy-mm-dd
总体安排
对于职位:
function count_posts_in_period( $date_from, $date_to ){
global $wpdb;
$count = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_date >= %s AND post_date < %s ", $date_from, $date_to));
return $count;
}