gpt4 book ai didi

Wordpress get_the_ID() 什么都不返回,但 get_the_title() 返回标题?

转载 作者:行者123 更新时间:2023-12-02 06:11:19 28 4
gpt4 key购买 nike

我正在为 wordpress 模板苦苦挣扎。在我的一个主题模板中,我有以下几行

<?php
echo get_the_ID(); // displays nothing
echo get_the_title(); // displays "Hello World! this is title"
?>

为什么 get_the_ID() 什么都不返回?我想要我所在的当前页面的页面 ID。

最佳答案

这在循环中起作用:

<?php $this_page_id = get_the_ID(); echo $this_page_id ; ?>

循环外:

<?php $this_page_id = $wp_query->post->ID; echo $this_page_id ;?>

关于Wordpress get_the_ID() 什么都不返回,但 get_the_title() 返回标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2433256/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com