我想在单个子帖子中显示父字段的标题(这些是使用wp-types创建的自定义帖子)。
目前,我似乎得到的只是当前帖子的标题,而不是父母。
以下是我的标记。
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="the-copy">
<?php the_content(); ?>
</div>
<div class="parent-title">
<?php
$parent_title = get_the_title($post->post_parent);
echo $parent_title;
?>
</div>
<?php endwhile; ?>
<?php endif; ?>
我做错了什么或者我错过了什么?
感谢您的帮助,从我看到的情况来看,这应该很简单,但这对我不起作用。