Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created December 4, 2017 18:15
Show Gist options
  • Save djrmom/d52ff47c99ddd81d2ddba2819bb6424e to your computer and use it in GitHub Desktop.
Save djrmom/d52ff47c99ddd81d2ddba2819bb6424e to your computer and use it in GitHub Desktop.
facetwp search placeholder
<?php
add_filter( 'facetwp_facet_render_args', function( $args) {
if ( 'my_search_facet' == $args['facet']['name'] ) { // change my_search_facet to name of your facet
$args['facet']['placeholder'] = 'Something';
}
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment