RY City Select for WooCommerce Action/Filter 列表

Filter

  • ry_wc_city_select_cities:新增鄉鎮市列表。
    1. 所有的鄉鎮市列表

簡易使用範例

add_filter( 'ry_wc_city_select_cities', 'my_cities' );
/**
 * 將 XX 取代為國家代碼。將 YYY、ZZZ 取代成為縣市代碼。
 * 鄉鎮市列表支援單純的名稱,或是名稱與郵遞區號兩種模式。
 * Replace XX with the country code. Instead of YYY, ZZZ use actual state codes.
 * The City list can list of city name with postcode or just city name.
 */
function my_cities( $cities ) {
    $cities['XX'] = array(
        'YYY' => array( // 同時提供名稱與郵遞區號 city name with postcoe
            array('City', 100),
            array('Another City', 101)
        ),
        'ZZZ' => array( // 只提供名稱 just city name
            'City 3',
            'City 4'
        )
    );
    return $cities;
}