1

我正在使用以下代码从 Wordpress 中的类别计数中删除括号,这可以正常工作,但是 &exclude=10 排除类别不再有效。

<?php
 $variable = wp_list_categories('echo=0&show_count=1&title_li=&exclude=10');
 $variable = str_replace(array('(',')'), '', $variable);
 echo $variable;
?>
4

2 回答 2

0
$args = array(
    'echo'       => 0,
    'taxonomy'   => 'category',
    'exclude'    => 10,
    'hide_empty' => 1,
    //'parent'     => 0  //uncomment this if you only want top level cats
);
$cats = get_categories($args);
echo '<ul>';
foreach ($cats as $cat) :
   echo '<li><a href="'.get_category_link( $cat->term_id ).'">'.$cat->name.'</a></li>';
endforeach;
echo '</ul>';

WP 错误绕过了不同的功能,基本上做同样的事情。

于 2013-10-29T21:38:59.690 回答
0

有效的代码:确保它进入您的 Functions.php 文件。

hadd_filter( 'woocommerce_subcategory_count_html', 'wc_filter_woocommerce_subcat_count_html', 10, 2 );
function wc_filter_woocommerce_subcat_count_html( $mark_class_count_category_count_mark, $category ) {
$mark_class_count_category_count_mark = ' <mark class="count">' . $category->count . '</mark>';
return $mark_class_count_category_count_mark;
};
于 2020-07-05T23:10:58.753 回答