I want to create a page labeled “Today’s News” which displays a simple bulleted list of all posts published on the current day and grab the current date based on the server’s date/time. Is this feasible?
Thank you for any help.
I want to create a page labeled “Today’s News” which displays a simple bulleted list of all posts published on the current day and grab the current date based on the server’s date/time. Is this feasible?
Thank you for any help.
You must be logged in to post a comment.
Use query_posts
Yes.
get_posts();
is your best friend. No need to modify the query or run a new one.Is it feasible to create a page like this, where I can see a list of all posts on the current day, and grab the current date based on server time?