在子帖子中显示Wordpress父字段

时间:2016-06-25 07:56:05

标签: wordpress types relationship parent

我想在单个子帖子中显示父字段的标题(这些是使用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; ?>

我做错了什么或者我错过了什么?

感谢您的帮助,从我看到的情况来看,这应该很简单,但这对我不起作用。

1 个答案:

答案 0 :(得分:0)

管理以找到解决方案here

基本上,因为我使用的是类型插件标准的父/子wordpress代码无法正常工作