Skip to content

Instantly share code, notes, and snippets.

@MrImranJaved
Forked from jessepearson/sri_lanka_states.php
Last active February 1, 2022 14:22
Show Gist options
  • Save MrImranJaved/ae96cdb32991e439d480fc5604b091ec to your computer and use it in GitHub Desktop.
Save MrImranJaved/ae96cdb32991e439d480fc5604b091ec to your computer and use it in GitHub Desktop.
<?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