在自制小工具代码也或者主题的相应地方加入以下代码即可:
function get_today_post_count() {
$today = getdate();
$query = new WP_Query('post_type='. 'post'.'&year='. $today['year'].'&monthnum='. $today['mon'].'&day='. $today['mday']);
return $query->post_count;
}
本文章由 brokenway 发布在 个人知识库 ,文章所述不代表本站观点,法律风险由发布者自行承担,转载请注明出处!