我有一个显示功能the title 当前子级别页的顶级页的。它工作得很好,但我不知道如何链接到显示的同一顶级页面。
function my_page_ancestor() {
global $post;
if( !is_front_page() ) {
$parents = get_post_ancestors( $post );
$top_parent_link = get_permalink( end($parents) );
echo \'<a href="\' . $top_parent_link . \'"><span class="pageAncestor">\' . get_the_title( end($parents) ) . \'</span></a>\';
}
}
我试过了
get_the_permalink()
函数内部,但它只是中断。
Edit:我已经更正了上面的函数,现在它可以按照我的要求工作了。