2025年01月20日 建站教程
wordpress如何利用函数获取当前ID,下面web建站小编给大家简单介绍一下几种方法!
方法一:利用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; ?>
本文链接:http://so.lmcjl.com/news/21710/