wordpress 从 wp_list_pages 中删除 "Pages"

wordpress remove "Pages" from wp_list_pages

这是我的代码:

<div>
    <?php
        $pageID = 11;
        $Xpost = get_post($pageID);
        $args = array (
            "child_of" => $Xpost->ID, 
            'title-li' => ""
        );
        wp_list_pages($args); 
    ?>
</div>

然而,当它显示时,它仍然像无序列表一样显示,标题为 "Pages"——我无法理解。

我什至试图通过放置 "title-li" => "Stuff" 任何东西 来更改标签,但我无法更改它。

title_li 应该是下划线而不是破折号