因为参数名为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
);