Skip to content

Instantly share code, notes, and snippets.

View jonahcoyote's full-sized avatar

Jonah C West jonahcoyote

View GitHub Profile
@djrmom
djrmom / custom-hooks.php
Last active April 9, 2020 15:07
facetwp add span to labels
<?php
/** adds a span to checkbox labels for styling **/
add_filter( 'facetwp_facet_html', function( $html, $args ) {
if ( 'checkboxes' == $args['facet']['type']) {
$pattern = '/<div class="facetwp-checkbox[^"]*" data-value="[^"]*">([^<]*) <span/';
preg_match_all( $pattern, $html, $matches );