Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created October 6, 2016 13:52
Show Gist options
  • Select an option

  • Save farookibrahim/bce9ee636e1bbc5004f4f76ef495395e to your computer and use it in GitHub Desktop.

Select an option

Save farookibrahim/bce9ee636e1bbc5004f4f76ef495395e to your computer and use it in GitHub Desktop.
Unicase LiveSearch Product Count Increase
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