3

我需要通过 wordpress json api 获取作者 ID。

例如:

http://eng.search.wordpress.com/?q=apple&page=2&s=date&f=json

输出是:

[{“标题”:“谣言:Ya se habla del lanzamiento del Samung Galaxy S IV para marzo de 2013”​​,“链接”:“http://techyzmundo.com/2012/11/15/rumor-ya-se- habla-del-lanzamiento-del-samung-galaxy-s-iv-para-marzo-de-2013/","epoch_time":"1352993240","author":"Techyzmundo","guid":"http:// /techyzmundo.com/2012/11/15/rumor-ya-se-habla-del-lanzamiento-del-samung-galaxy-s-iv-para-marzo-de-2013/","content":"Al mismo estilo que Apple, no ha pasado ni 6 meses hay se est\u00e1 hablando de una nueva versi\u00f3n del Equipo bandera de Samsung para marzo del pr\u00f3ximo [...]"},{"title........ ……”

json 输出中没有作者 ID。如何在 wordpress 搜索 url 中发送请求以获取作者 ID?

4

1 回答 1

0

您可以为此使用 WP User Query 类(http://codex.wordpress.org/Class_Reference/WP_User_Query),并且因为您有用户 nicename,您可以将其用作查询参数。

例如:

$user_query = new WP_User_Query(array('nicename' => 'Techyzmundo'));

这对你有用吗?

于 2013-06-14T09:57:13.770 回答