wordpress 获取 当前页面ID
方法如下:
第一种:使用get_the_ID()
<?php $current_id = get_the_ID(); echo $current_id; ?>
第二种:使用get_queried_object_id()
<?php $current_id = get_queried_object_id(); echo $current_id; ?>
第三种:直接使用
<?php global $post; $current_id = $post -> ID; echo $current_id; ?>