I’m trying to get wordpress post by date and time,
for example from 02/01/2014 to 02/05/2014 and time 17:10, somebody knows?
thanks for the help
I’m trying to get wordpress post by date and time,
for example from 02/01/2014 to 02/05/2014 and time 17:10, somebody knows?
thanks for the help
You must be logged in to post a comment.
The WP_Query class can fulfill this. Just set up a new query, passing in the appropriate arguments:
Then run your loop using the query object you just instatiated:
The date parameters section gives a good overview of the types of post queries you can create: http://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters
N.B Don’t use
query_posts
. From the codex: