Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created June 20, 2018 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/0eeb1731963661c20aa18885bcece071 to your computer and use it in GitHub Desktop.
Save mgibbs189/0eeb1731963661c20aa18885bcece071 to your computer and use it in GitHub Desktop.
Unescape HTML facet labels
<?php
add_filter( 'facetwp_facet_html', function( $html, $args ) {
if ( 'langdurige_opsluiting' == $args['facet']['name'] ) {
$html = htmlspecialchars_decode( $html );
}
return $html;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment