Created
March 6, 2018 13:27
-
-
Save mgibbs189/69c0c9d701a2795b517f7dbac06af6c1 to your computer and use it in GitHub Desktop.
Pre-fill the search box if not filled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add to your (child) theme's functions.php | |
add_filter( 'facetwp_render_params', function( $params ) { | |
foreach ( $params['facets'] as $key => $facet ) { | |
if ( 'keywords' == $facet['facet_name'] ) { // change "keywords" to your actual facet name | |
if ( empty( $facet['selected_values'] ) ) { | |
$params['facets'][ $key ]['selected_values'] = 'circ'; | |
} | |
} | |
} | |
return $params; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment