Guest User

Untitled

a guest
May 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. /** removes () from count, could also be used to replace with alternate bracketing or other output **/
  4.  
  5. add_filter( 'facetwp_facet_html', function( $output, $params ) {
  6. if ( 'product_categories' == $params['facet']['name'] ) {
  7. $output = preg_replace( '/\(([0-9]+)\)/', '$1', $output );
  8. }
  9. return $output;
  10. }, 10, 2 );
Add Comment
Please, Sign In to add comment