正在从当前页面检索帖子ID

时间:2014-07-22 作者:stargatesg1

我正在学习教程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
 }

1 个回复
SO网友:TBI Infotech

您可以使用get_the_ID(); 函数获取当前帖子的Id

欲了解更多信息,请访问here

结束