PHP Fatal error: Cannot redeclare __() in /wordpress/wp-includes/l10n.php on line 102
esta es la linea 102
Código PHP:
function __( $text, $domain = 'default' ) {
return translate( $text, $domain );
Código PHP:
if (!function_exists('__')) {
function __( $text, $domain = 'default' ) {
return translate( $text, $domain );
}
} else {
override_function('__', '$text, $domain = "default"', 'return translate( $text, $domain );');
}