hola, yo tengo un problema parecido y no se como solucionarlo. Es una llamada al wordpress desde la página y me da el siguiente error: Parse error: syntax error, unexpected T_STRING in /homez.743/obermann/www/blog/wp-includes/functions.php on line 2540
Pongo el código a ver si alguien puede decirme donde está el error:
Código PHP:
Ver originalfunction dead_db() {
global $wpdb;
// Load custom DB error template, if present.
if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) {
require_once( WP_CONTENT_DIR . '/db-error.php' );
die();
}
// If installing or in the admin, provide the verbose message.
if ( defined('WP_INSTALLING') || defined('WP_ADMIN') )
wp_die($wpdb->error);
// Otherwise, be terse.
status_header( 500 );
nocache_headers();
header( 'Content-Type: text/html; charset=utf-8' wp_load_translations_early(); ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php _e( 'Database Error' ); ?></title>
no se si con esto llega para verlo o tengo que ponerlo todo....
Gracias por adelantado estoy totalmente perdida.