从特定页面ID号获取父页面标题名称

时间:2016-08-10 15:31:21

标签: php wordpress

我有一个存储在变量中的页面ID号。但是,我正在尝试访问特定的页面ID号父页标题。

有人能引导我朝着正确的方向前进吗?

2 个答案:

答案 0 :(得分:2)

请尝试使用以下代码:

get_the_title(wp_get_post_parent_id($your_post_ID));

答案 1 :(得分:0)

对于当前页面:

<?php
echo empty( $post->post_parent ) ? get_the_title( $post->ID ) : get_the_title( $post->post_parent );
?>

如果该ID是其他页面ID我会说在DB本身上运行查询以获得该标题。