php facetwp修改facet计数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp修改facet计数相关的知识,希望对你有一定的参考价值。

<?php

/** removes () from count, could also be used to replace with alternate bracketing or other output **/

add_filter( 'facetwp_facet_html', function( $output, $params ) {
	if ( 'product_categories' == $params['facet']['name'] ) {
		$output = preg_replace( '/\(([0-9]+)\)/', '$1', $output );
	}
	return $output;
}, 10, 2 );

以上是关于php facetwp修改facet计数的主要内容,如果未能解决你的问题,请参考以下文章