wordpress从wp_list_pages中删除“Pages”

时间:2015-09-17 01:01:10

标签: php wordpress codex

这是我的代码:

<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"任何来更改标签,但我无法改变它。

1 个答案:

答案 0 :(得分:1)

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