I'm running the WordPress REST API (on WordPress 4.7.3) and when I hit /wp-json/wp/v2/posts I'm getting back JSON for my posts, but the content and excerpt fields are showing up blank - like this:
"status": "publish",
"type": "post",
"link": "https://www.example.com/myblog/blah/",
"title": {
"rendered": "Title goes here"
},
"content": {
"rendered": "",
"protected": false
},
"excerpt": {
"rendered": "",
"protected": false
},
"author": 192,
Those posts definitely have content! Any ideas what could be causing the content and excerpt not to be returned by the API?
"rendered": ""
– Louielouisthe_content
hook or similar.. can you try to disable any of such plugins? – Ozonosphere