Created
December 4, 2017 18:15
-
-
Save djrmom/d52ff47c99ddd81d2ddba2819bb6424e to your computer and use it in GitHub Desktop.
facetwp search placeholder
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_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