我目前有两个 JS 代码用于从我的 wordpress 动态加载我的帖子:
代码 1:JSON API
<script src="http://howtodeployit.com/category/daily-devotion/?json=recentstories&callback=listPosts" type="text/javascript"></script>
代码 2:RSS 提要
$.ajax({
type: "GET",
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=1000&callback=?&q=' + encodeURIComponent('http://howtodeployit.com/category/daily-devotion/feed/'),
dataType: 'json',
})
JSON API 结果包含每篇文章的 ID,但 RSS Feed 经 Ajax Google API 转换后的结果不包含文章 ID。
我是否需要修改我的 Wordpress RSS 代码以包含帖子 ID?