我正在尝试从WordPress获取WordPress POST数据 - 标题,描述,日期和图像,并在不同的网页上显示内容。
var URL = 'url';
$.getJSON({
url: URL,
type: "get",
dataType: "json",
success: function(data) {
console.log(data);
},
error: function(data) {
$('.blog').text('No Blogs Found!');
}
});
});
我能够得到错误,但它不是成功部分。
我使用jQuery和Ajax尝试从WordPress中获取数据。
答案 0 :(得分:0)
您可以从外部使用这样的WordPress网站的Feed数据: http://examplewpsite.com/feed/?category=yourcategory
使用simplexml_load_file($ feedurl),您可以将所需数据放入如下数组中:
$feed = simplexml_load_file($feedurl);
$feed_array = array();
foreach($feed->channel->item as $story){
$story_array = array (
'title' => $story->title,
'desc' => $story->description,
'link' => $story->link,
'date' => $story->date
);
array_push($feed_array, $story_array);
}