我有问题从WordPress获取单个帖子页面并在移动jQuery页面上显示它。 我需要获得完整的帖子清单;点击后,我需要打开一个帖子。
这是获取帖子列表的代码:
$.getJSON("http://www.mcaps.at/redesign/api/get_posts/?post_type=reference_member",
function posts(data) {
var output='<ul data-role="listview" data-inset="true" data-divider-theme="c">';
$.each(data.posts, function(key,ref){
output += '<li class="show-more" >';
output += '<a href="#blog-post" onclick="showPost(' + ref.id + ')">';
output += '<h3>' + ref.title + '</h3>';
output += '<img src=" ' + ref.thumbnail + ' " />';
output += '</a>';
output += '</li>';
});
output+='</ul>';
$('#referenzen-content').html(output);
});
如何通过ID获得单个帖子? 谢谢!