在帖子中,您可以使用<!--nextpage-->
标签将单个帖子拆分为多个页面。
使用Rest API,您可以执行以下操作获得整篇文章:
http://example.com/wp-json/wp/v2/posts/<postid>
但是,这将返回整个帖子内容,我只想获得帖子的第一页,或第二篇帖子,等等。
http://example.com/wp-json/wp/v2/posts/<postid>?paged=1
http://example.com/wp-json/wp/v2/posts/<postid>?paged=2
但是它似乎并没有改变返回的JSON输出。
Rest API似乎不尊重<!--nextpage-->
功能。
我尝试过在线查找资源/文档,但我认为以前没有人遇到过这个特定问题。
我希望有人能提供帮助!