wp_list_pages 删除标题

Bra*_*her 1 php wordpress

早上好,

我正在使用这段代码在我的侧边菜单中拉出一个子导航,它只显示当前页面的子页面。但是代码会自动生成名为“Pages”的子导航的标题

如何删除此标题?

<?php
    wp_list_pages( array('child_of' => $post->ID,'depth' => 1,));
?>
Run Code Online (Sandbox Code Playgroud)

http://www.trevorpeters.co.uk/landfordstone-wordpress/?page_id=752

Bra*_*her 5

我自己通过上面的代码编辑找到了答案。

<?php
    wp_list_pages( array(
        'child_of' => $post->ID,
        'depth' => 1,
        'title_li' => ''
));
?>
Run Code Online (Sandbox Code Playgroud)