Thanks vtxyzzy!
How would you go on that query? I need the date variable from my post but then I suppose I need it in the filter WordPress describes below:
function filter_where($where = '') {
//posts for March 1 to March 15, 2009
$where .= " AND post_date >= '2009-03-01' AND post_date < '2009-03-16'";
return $where;
}
I would then like to do something like
function filter_where($where = '') {
//posts for March 1 to March 15, 2009
$where .= " AND post_date > '" . $myTime;
return $where;
}
But how do I pass that variable to my filter?
Thanks!