Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created February 28, 2020 17:34
Show Gist options
  • Save madeincosmos/b0c493b881e41c4b8166844a0d914ebb to your computer and use it in GitHub Desktop.
Save madeincosmos/b0c493b881e41c4b8166844a0d914ebb to your computer and use it in GitHub Desktop.
Increase product search limit in WP Admin to 100
add_filter ('woocommerce_json_search_limit', 'woo_set_custom_search_limit', 10 );
function woo_set_custom_search_limit( $limit ) {
return 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment