Display posts from the last 24 hours
-
I’d like to display posts made in the last 24 hours.
So far I have this:<?php $current_year = date('Y'); $current_month = date('m'); $current_day = date('j'); query_posts("showposts=10&year=$current_year&monthnum=$current_month&day=$current_day"); ?>
This way I display posts made today but not from the last 24 hours.
What should I use to get what I want?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Display posts from the last 24 hours’ is closed to new replies.