Gets the current locale.
If the locale is set, then it will filter the locale in the 'locale' filter hook and return the value.
If the locale is not set already, then the WPLANG constant is used if it is defined. Then it is filtered through the 'locale' filter hook and the value for the locale global set and the locale is returned.
The process to get the locale should only be done once but the locale will always be filtered using the 'locale' hook.
<?php get_locale() ?>
None.
This sets the monetary locale and if empty, sets as en_US
setlocale(LC_MONETARY, get_locale()); $my_local_settings = localeconv(); if ($my_local_settings['int_curr_symbol'] == "") setlocale(LC_MONETARY, 'en_US');
This shows the value of setlocale:
setlocale(LC_MONETARY, get_locale()); print_r($my_local_settings);
Since: 1.5.0
get_locale() is located in wp-includes/l10n.php
.
Localization: get_locale(), load_textdomain(), load_default_textdomain(), load_plugin_textdomain(), load_theme_textdomain()