Skip to content

Instantly share code, notes, and snippets.

View imokweb's full-sized avatar

Istvan imokweb

View GitHub Profile
@ethicka
ethicka / remove-facet-count.php
Created February 3, 2020 20:27
FacetWP: Remove Facet Count
<?php
add_filter('facetwp_facet_html', function ($output, $params) {
if ('dropdown' == $params['facet']['type']) {
$output = preg_replace("/( \([0-9]+\))/m", '', $output);
}
return $output;
}, 10, 2);