woocommerce_get_country_locale_base

woocommerce_get_country_locale_base

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_get_country_locale_base') is found 2 times:

  • /includes/class-wc-countries.php line 1679
    1675
    1676
    1677
    1678
    1679
    1680
    1681
    1682
    1683
    1684
            if ( ! isset( $this->locale[ $this->get_base_country() ] ) ) {
                $this->locale[ $this->get_base_country() ] = $this->locale['default'];
            }
     
            $this->locale['default']                   = apply_filters( 'woocommerce_get_country_locale_base', $this->locale['default'] );
            $this->locale[ $this->get_base_country() ] = apply_filters( 'woocommerce_get_country_locale_base', $this->locale[ $this->get_base_country() ] );
        }
     
        return $this->locale;
    }
  • /includes/class-wc-countries.php line 1680
    1676
    1677
    1678
    1679
    1680
    1681
    1682
    1683
    1684
    1685
    1686
                $this->locale[ $this->get_base_country() ] = $this->locale['default'];
            }
     
            $this->locale['default']                   = apply_filters( 'woocommerce_get_country_locale_base', $this->locale['default'] );
            $this->locale[ $this->get_base_country() ] = apply_filters( 'woocommerce_get_country_locale_base', $this->locale[ $this->get_base_country() ] );
        }
     
        return $this->locale;
    }
     
    /**