我正在使用WordPress(WP)作为在地图上交付内容的应用程序的后端。
几天来,我一直在尝试了解WP中的AJAx,并找到了一个很好的tutorial 我试着跟着。
我已经对其进行了改编,以便在主题中使用,但是如何才能“获取”该主题的内容?
相关部分:
function the_content( $content ) {
global $post;
if( is_single() && \'post\' == $post->post_type ) { //I\'ll want post from a specific category, not just single posts.
$content .= \'<button class="ajax-yall" data-postid="\'. $post->ID .\'">\'. __(\'Click me!\', \'ajax-yall\') .\'</button>\'; //here I want it to get the post content of posts in a particular category
}
return $content;
}
以及
$.get(
ajaxYall.ajaxurl,
{
action : ajaxYall.action,
nonce : ajaxYall.nonce,
postID : $el.attr(\'data-postid\')
},
我对此做了各种尝试,但我在这方面的知识还不够。