使用Jetpack JSON API在另一个wordpress上显示wordpress上的帖子

时间:2014-06-11 20:49:42

标签: php json wordpress api jetpack

我制作此代码以显示来自另一个wordpress网站的帖子到我的网站。但问题是只显示一个帖子。我想展示3篇最新帖子,我是JSON的新人,并且不太了解。

<script>
jQuery(function($) {
    $.getJSON('https://public-api.wordpress.com/rest/v1/sites/****.com/posts/?number=5&category=sport')
        .success(function(response) {
            $('#content')
                .attr('href', response.posts[0].URL);

            $('#foto')
                .attr('src', response.posts[0].featured_image);

            $('#title')
                .html(response.posts[0].title)
                .attr('href', response.posts[0].URL);
        });
});
</script>
<div id="lajme-kollona-mesit-item-madhe-sport">
<a href="" id="content">
<img src="" id="foto" width="148" height="103"></img>
</a>
<div id="lajme-kollona-mesit-item-title-madhe-sport">
<a href="" id="title"></a>
</div>
</div>

提前谢谢!

0 个答案:

没有答案