我正在学习教程here. Wordpress Ajax有点复杂,但本教程对我有所帮助。我唯一的问题是,当我查看任何页面时,我希望能够获得当前的帖子ID。
有一个函数叫做whatever。现在由于某种原因我不能得到$post->ID
当前页的。
// The function that handles the AJAX request
function my_action_callback() {
check_ajax_referer( \'my-special-string\', \'security\' );
global $post;
$whatever = intval( $_POST[\'whatever\'] );
echo $post->ID;
die(); // this is required to return a proper result
}