如何在wordpress中获取当前页面的父页面ID和标题?

时间:2017-04-06 08:00:00

标签: wordpress

这是我的代码,它不起作用。

global $post;
echo get_the_title( wp_get_post_parent_id( $post->post->ID ) );

但这不起作用。

提前谢谢。

4 个答案:

答案 0 :(得分:1)

对于父页面ID

$post->post_parent;

对于当前页面标题

$post->post_title;

答案 1 :(得分:1)

在古腾堡:

wp.data.select('core/editor').getEditedPostAttribute('parent')

希望对某人有帮助

答案 2 :(得分:0)

对于父页面 id

<?php
  echo wp_get_post_parent_id(get_the_ID());
?>    

答案 3 :(得分:0)

如果你想要,即:创建一个指向帖子父级的链接:

<a href="<?= get_permalink($post->post_parent) ?>">
  <?= get_the_title($post->post_parent) ?>
</a>
&rarr; <?= the_title() ?>

这将导致即:

<块引用>

最新消息 → 部分新闻标题