Wordpress JSON API从给定日期获取帖子

时间:2014-08-07 09:31:53

标签: php json wordpress

我正在使用插件wordpress' RESTful API插件名为JSON API,我想从给定日期获取帖子。我尝试了很多参数,但它对我没用,你能帮帮我吗?

以下是我测试的例子:

http://www.example.com/?json=get_date_posts&date=20140806&posts_per_page=-1

http://www.example.com/?json=get_posts&after=20140806&posts_per_page=-1

3 个答案:

答案 0 :(得分:1)

此WP插件包含文档JSON API Docs

请参阅此部分Method:get_posts此调用接受与WordPress的WP_Query参数相同的参数,可在此处WP_Query parameters找到。

您要找的部分是Date parameters

示例:http://www.example.com/?json=get_date_posts&year=2012&monthnum=12&day=12&posts_per_page=-1

答案 1 :(得分:0)

如果它仍然有帮助,请不要使用这样的东西: JSON = get_date_posts&安培;日期=%后2020150318

答案 2 :(得分:0)

您可以使用带有下面的参数的get_posts来获取日期中的所有帖子

count = -1

date_query [0] [after] = 20160101

http://www.example.com/api/get_posts/?count=-1&date_query%5B0%5D%5Bafter%5D=20160101

您可以在https://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters

上查看所有日期参数