Gracias pero sale esto:
html <?php language_attributes(); ?>>
en mi wp-config tengo :
define('WPLANG', 'es_ES');
Con lo que me deberia de coger el es_Es en :
de l10n.php
Código PHP:
Ver originalfunction get_locale() {
global $locale;
return apply_filters( 'locale', $locale );
// WPLANG is defined in wp-config.
$locale = WPLANG;
// If multisite, check options.
if ( is_multisite() ) {
// Don't check blog option when installing.
if ( defined( 'WP_INSTALLING' ) || ( false === $ms_locale = get_option
( 'WPLANG' ) ) ) $ms_locale = get_site_option('WPLANG');
if ( $ms_locale !== false )
$locale = $ms_locale;
}
$locale = 'en_US';
return apply_filters( 'locale', $locale );
}
y en get_bloginfo()
tengo :
case 'language':
$output = get_locale();
$output = str_replace('_', '-', $output);
break;
para despues cargar los datos en html <?php language_attributes(); ?>>
Pero me no hay manera de cambiarlo sigue saliendo en_US
me falta algo?