Created
October 6, 2016 13:52
-
-
Save farookibrahim/bce9ee636e1bbc5004f4f76ef495395e to your computer and use it in GitHub Desktop.
Unicase LiveSearch Product Count Increase
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
| add_filter( 'unicase_live_search_query_args', 'custom_unicase_live_search_query_args' ); | |
| function custom_unicase_live_search_query_args( $args ) { | |
| $args['posts_per_page'] = 20; | |
| return $args; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment