我如何使用WP Rest API通过ID获取特定div中的内容?
我可以通过以下方式获取页面的页面内容:
$( document ).ready(function() {
$.ajax({
url: 'httpS://mysite/wp-json/wp/v2/pages/14/',
error: function() {
$('#info').html('<p>An error has occurred</p>');
},
dataType: 'json',
async: false,
type: 'GET',
success: function(data) {
var theContent = data;
document.getElementById("nav-wrapper").innerHTML = theContent.content.rendered;
}
});
});
如何在上面引用的页面上获取ID = remoteContent的DIV的内容?