我试图通过一个关于"https://www.youtube.com/watch?v=GHTZn3atTcM“的教程来创建一个wordpress主题。在这里,我试图在标题下添加一个儿童导航,就像面包屑一样。
在我的page.php中,我有下面的代码:
<!-- Child nav -->
<?php
$args = array(
'child_of' => get_top_ancestor_id(),
'title_li' => '' //single quotes
);
wp_list_pages($args); ?>在我的functions.php中,我有下面的代码:
/* Get top ancestor id */
function get_top_ancestor_id(){
global $post;
if($post->post_parent){
$ancestor = array_reverse(get_post_ancestor($post->ID));
$ancestor[0];
}
return $post->ID;
}请建议一下。
发布于 2017-03-11 12:13:18
我的错,一定是"get_post_ancestors()".
https://stackoverflow.com/questions/42734360
复制相似问题