Why title_li ='' not working

时间:2020-10-17 作者:Shark Deng

我想隐藏“类别”,并使用以下代码

<?php
                    $args = array(
                        \'parent\'            => 33, 
                        \'show_count\'        => 1,
                        \'title_li=\'         => __( \'\' ),
                        \'hide_empty\'        => 0,
                    );
                    wp_list_categories($args)
                    ?>
但它不起作用,为什么?非常感谢。

1 个回复
最合适的回答,由SO网友:Sally CJ 整理而成

因为参数名为title_li 而不是title_li=. 它也没有意义使用__( \'\' ), 所以我把它改成\'\'.

// When the args is a query string, title_li= works.
$args = \'title_li=\';

// But when the args is an array, use just title_li.
$args = array(
    \'title_li=\' => \'\', // bad
    \'title_li\'  => \'\', // good
);

相关推荐

如何按照与菜单相同的顺序对Get_Categories()进行排序?

我使用了一个主题,我注意到它在菜单中动态显示了一系列类别:我需要相同的类别列表,但页脚的HTML标记不同。目前,这是我在页脚中的内容:页脚。php:<?php $categories = get_categories(); foreach($categories as $category) { echo \'<a href=\"\' . get_category_link($category->term_id) . \'\"