我有一个像这样的菜单结构:
Collections->
- >耐克
- >足球靴
我想要的是显示第二个子页面的页面标题,这样当我在足球靴页面(第三个子页面)时,它总是显示第二个子页面(Nike)的页面标题,I希望能够拥有不同的收藏页面,但都拥有相同的页面标题“Nike”
到目前为止我所拥有的是:`
<?php
$current = $post->ID;
$parent = $post->post_parent;
$grandparent_get = get_post($parent);
$grandparent = $grandparent_get->post_parent;
?>
<?php if ($root_parent =
get_the_title($grandparent) !== $root_parent = get_the_title($current)) {echo get_the_title($grandparent); } else {echo get_the_title($parent); }?>
但这只是获取父页面标题,我想要它的子页面页面标题