如何将帖子ID添加到JSON URL?

时间:2014-02-06 10:00:27

标签: json wordpress

我不熟悉PHP语法。现在我将JSON插件添加到我的wordpress网站并激活它。

当我打开get_recent_post的网址时,它很好。 JSON数据正在显示。

但是当我打开get_post时,它只显示

{"status":"error","error":"Include 'id' or 'slug' var in your request."}

所以我不知道如何将post id添加到该URL。

这是照片。另一个get_page , gate_date_posts等链接显示错误。

enter image description here

我该怎么做?

2 个答案:

答案 0 :(得分:2)

要显示帖子的ID,只需在WordPress循环中使用以下PHP代码:

<?php the_ID(); ?>

要返回ID,请在WordPress循环中使用以下PHP代码:

<?php get_the_ID; ?>

要在WordPress循环之外获取帖子的ID,请使用以下PHP代码:

<?php global $post; $post->ID ?>

希望对你有所帮助。

答案 1 :(得分:-2)

http://yoursite.com/api/get_posts/

与s

如果你使用WordPress链接并点击它,你会没事的。