This file contains 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_countries_base_postcode', create_function( '', 'return "80903";' ) ); | |
add_filter( 'woocommerce_countries_base_city', create_function( '', 'return "COLORADO SPRINGS";' ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From php.net on using 'create_function' "Warning
This function has been DEPRECATED as of PHP 7.2.0. Relying on this function is highly discouraged."