使用JSON API按自定义字段(META_KEY)过滤

时间:2012-02-17 作者:saschoar

嗨,我在用greatJSON API 对于Wordpress,希望通过特定的自定义字段(使用meta\\u键和meta\\u值参数)筛选我的自定义帖子类型。

到目前为止,我的URL中的查询如下所示:

http://example.org?json=get_recent_posts&post_type=mytype&custom_fields=myfield&include=title,custom_fields&meta_key=myfield&meta_value=myvalue

但是,它仍然返回所有帖子(来自该帖子类型),无论它们是否包含自定义字段映射。

怎么了?提前感谢您的帮助。

1 个回复
SO网友:kaiser

由于评论太多,我将在此处发布并稍后删除:

http://example.org // domain
?json=get_recent_posts // controller
# Arguments for the query start here
&post_type=mytype 
&custom_fields=myfield
&include=title,custom_fields
&meta_key=myfield
&meta_value=myvalue
您是否尝试过以下方法?

调试响应:http://www.example.org/api/get_page_index/?dev=1http://www.example.org/api/get_recent_posts/?callback=show_posts_widget&read_more=More&count=3http://www.example.org/api/posts/create_post/?callback_error=http%3A%2F%2Fwww.example.org%2Fhelp.html您能发布一下您从调试中得到的信息吗?

结束

相关推荐