Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active April 19, 2018 16:08
Show Gist options
  • Save djrmom/4a25f2eff223f24f97718363d4259758 to your computer and use it in GitHub Desktop.
Save djrmom/4a25f2eff223f24f97718363d4259758 to your computer and use it in GitHub Desktop.
facetwp filter html
<?php
add_filter( 'facetwp_facet_html', function( $output, $params ) {
if ( 'my_facet' == $params['facet']['name'] ) { // change 'my_facet' to name of your facet
$output = str_replace ( '</select>' , '</select><button onclick="FWP.refresh()">>></button>' , $output );
}
return $output;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment