Posts modified in the last 48 hours
I am using the code below to generate posts created in the last 48 hours.
function filter_where($where = '') {
$where .= " AND post_date '" . date('Y-m-d', strtotime('-2 days')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
But I also want to get the posts modified in the last 48 hours. Even if their creation date is older. Does anyone know how to do this?
I'd appreciate your help...
Topic recent-posts Wordpress sql
Category Web