我不熟悉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
等链接显示错误。
我该怎么做?
答案 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)