WP REST API帖子提要不显示特色图像

时间:2015-12-10 16:22:56

标签: php json wordpress rest

我试图使用WP REST API v2插件将我的wordpress博客中的一些帖子提供到我的PHP网站。我的代码是:

  <?php 
    $json = file_get_contents('http://noticias.uscs.edu.br/wp-json/wp/v2/posts?filter[posts_per_page]=6&filter[orderby]=date');
    // Convert the JSON to an array of posts
    $posts = json_decode($json);

    foreach ($posts as $p) {
      echo '<p><a href="'.$p->link.'">'.$p->title->rendered.'</a><p>';
      // Output the featured image (if there is one)
      echo $p->featured_image ? '<img src="' . $p->featured_image->guid . '">' : '';

    }

  ?>

$json response是:

[{"code":"json_no_route","message":"Nenhuma rota foi encontrada que corresponde com a URL e o m\u00e9todo de requisi\u00e7\u00e3o"}]

几乎所有事情都是正确的,而不是没有显示的特色图像。可能是什么问题?

1 个答案:

答案 0 :(得分:1)

Wordpress新更新(4.4)在核心中添加其余的api: https://make.wordpress.org/core/2015/10/28/rest-api-welcome-the-infrastructure-to-core/

您可以使用Posts API获取thumbmail http://v2.wp-api.org/reference/posts/