从类别列表中省略/删除“<br>”

时间:2018-07-23 作者:Mahmud Farooque

使用了此代码,但这对我不起作用。

echo str_replace( "<br>", "", wp_list_categories(array(\'title_li\' => false, \'style\' => false)));
我错过了什么?

2 个回复
最合适的回答,由SO网友:Bhupen 整理而成

您可以替换“<;br>;\'通过设置使用“”separator 价值

echo wp_list_categories(array(\'title_li\' => false, \'style\' => false, \'separator\' => \'\'));

SO网友:Trilok
Please use below code it will help you
 $args = [
    \'style\'     => \'none\',
    \'separator\' => \'\', // <-- Removes the default one
];

wp_list_categories( $args );
结束