Last active
July 30, 2018 20:52
-
-
Save chrdesigner/9e74ed370944f0b0c60a to your computer and use it in GitHub Desktop.
Vender Somente para Estado Específico - WooCommerce
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
<?php | |
/** | |
* Brazillian states | |
* Function - Vender Somente para Estados Específicos - WooCommerce | |
*/ | |
function wc_especifico_estado( $states ) { | |
$states['BR'] = array( | |
'SP' => __( 'São Paulo', 'woocommerce' ), | |
'RJ' => __( 'Rio de Janeiro', 'woocommerce' ), | |
); | |
return $states; | |
} | |
add_filter( 'woocommerce_states', 'wc_especifico_estado' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment