如何使用Wordpress Rest API通过ID从特定元素获取内容?

时间:2019-10-16 19:00:00

标签: wordpress-rest-api

我如何使用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的内容?

0 个答案:

没有答案