我试图通过插件在页面上显示父页面标题、父页面id、当前标题和当前id。
我有下面的代码,然后我会回显每个代码的值。我遇到的问题是,在父页和子页上$parentTitle
和$parentID
正在返回当前标题和ID。
我看不出下面有什么问题。
$parentTitle = get_the_title($post->post_parent);
$parentID = get_the_ID($post->post_parent);
$currentTitle = get_the_title($post);
$currentID = get_the_ID();
要显示这些值,我只需执行以下操作:
echo $parentTitle;
echo $parentID;
echo $currentTitle;
echo $currentID;
我的插件中有一个函数,输出
wp_footer
我错过什么了吗?