标签: php wordpress
我需要在特定日期获取所有帖子,然后解析帖子内容。如何通过指定具体日期来获取帖子?我假设我需要使用get_posts()函数,但我不清楚如何格式化该调用。
答案 0 :(得分:1)
今天回复帖子
$today = getdate(); $myposts=get_posts('year=' .$today["year"] .'&monthnum=' .$today["mon"] .'&day=' .$today["mday"] );
更多例子: Time Parmeters for query_posts or get_posts