使用jQuery获取WordPress帖子的ID

xtfmy6hx  于 2023-06-22  发布在  jQuery
关注(0)|答案(1)|浏览(130)

我有一个脚本,我需要得到的职位的ID:

jQuery(function($) {    
   $('#myCustomButton').click(function() {
      var attachementId = xxx;
   });
});

其中“xxx”是我需要当前Post-ID的ID。你知道如何使用JS吗?使用PHP可以做到:

'postID' => $post->ID
dgenwo3n

dgenwo3n1#

jQuery(function($) {    
   $('#myCustomButton').click(function() {
      var attachementId = <?php echo $post->ID ?>;
   });
});

相关问题