我正在尝试从标记云小部件和加载项中删除括号<span class="post_count"> </span>
代替它。
目前我没有任何运气。我对分类很有用,但不确定为什么对标记云计数不起作用。
function categories_postcount_filter ($variable) {
$variable = str_replace(\'(\', \'<span class="post_count"> \', $variable);
$variable = str_replace(\')\', \' </span>\', $variable);
return $variable;
}
add_filter(\'wp_list_categories\',\'categories_postcount_filter\');
任何帮助都将不胜感激!非常感谢!庞特