在子帖子中显示WordPress父字段

时间:2016-06-25 作者:scottvw

我想在单个子帖子中显示父字段中的标题(这些是使用wp类型创建的自定义帖子)。

目前,我似乎只得到了当前帖子的标题,而不是家长。

下面是我的标记。

<?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; ?>
我是做错了什么还是错过了什么?

谢谢你的帮助,据我所知,这应该很简单,但它只是不适合我。

1 个回复
SO网友:scottvw

设法找到解决方案here

本质上,当我使用类型插件时,标准的父/子wordpress代码无法工作

相关推荐