我有一个脚本,我需要得到的职位的ID:
jQuery(function($) { $('#myCustomButton').click(function() { var attachementId = xxx; }); });
其中“xxx”是我需要当前Post-ID的ID。你知道如何使用JS吗?使用PHP可以做到:
'postID' => $post->ID
dgenwo3n1#
jQuery(function($) { $('#myCustomButton').click(function() { var attachementId = <?php echo $post->ID ?>; }); });
1条答案
按热度按时间dgenwo3n1#