我正在尝试计算我的wordpress网站上的帖子数量,这些帖子的时间戳大于或等于今天。
我已将当前时间和帖子时间戳放入两个变量并猜测它会开始:
if ($timestamp >= $curent_time) {
还包括count
和the_post()
答案 0 :(得分:1)
您应该对帖子进行某种循环,然后在条件内增加计数器,例如:
$curent_time = date('d-m-Y'); //or whatever format date
$cont = 0;
//for each post
foreach($posts as $post){
$timestamp = $post['timestamp'] // or whatever
if ($timestamp >= $curent_time) {
$cont++;
}
}
echo $cont;