-
-
Save MrImranJaved/ae96cdb32991e439d480fc5604b091ec to your computer and use it in GitHub Desktop.
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 // do not copy this line | |
if( ! function_exists( 'ij_child_custom_woocommerce_states' ) ) { | |
function ij_child_custom_woocommerce_states( $states ) { | |
$states['LK'] = array( | |
'PU' => __( 'Punjab', 'woocommerce' ), | |
'BOL' => __( 'Bolichistan', 'woocommerce' ), | |
'SND' => __( 'Sindh', 'woocommerce' ), | |
'KPK' => __( 'Khyber Pakhtunkhowa', 'woocommerce' ), | |
'AJK' => __( 'Azad Kashmir', 'woocommerce' ), | |
'CAP' => __( 'Islamabad', 'woocommerce' ), | |
); | |
return $states; | |
} | |
} | |
add_filter( 'woocommerce_states', 'ij_child_custom_woocommerce_states' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment