Created
February 28, 2020 17:34
-
-
Save madeincosmos/b0c493b881e41c4b8166844a0d914ebb to your computer and use it in GitHub Desktop.
Increase product search limit in WP Admin to 100
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 ('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