我试图在过去24小时内使用GD星级对帖子进行排序。我有两个独立的查询,但我不知道如何合并它们。
function filter_where($where = \'\') {
//posts in the last 24 Hours
$where .= "AND post_date > \'" . date(\'Y-m-d H:i:s\', strtotime(\'-24 hours\')) . "\'";
return $where;
}
add_filter(\'posts_where\', \'filter_where\');
query_posts($query_string);
以及query\\u posts(\'gdsr\\u sort=拇指&posts\\u per\\u page=10\');
我不知道如何使用GD-Star对过去24小时的帖子进行排序,但这两个查询单独运行时效果非常好。谢谢