Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/03/2008, 02:07
Avatar de luismarcos
luismarcos
 
Fecha de Ingreso: mayo-2007
Ubicación: Mérida, VE
Mensajes: 48
Antigüedad: 17 años
Puntos: 1
Undefined Function Language

Hola que tal!!

Acabo de instalar wordpress y pues estaba viendo distintos temas para alegrarlo un poco y cada vez que veia uno llamativo me lo descargaba lo instalaba en el directorio y sin más al abrir la URL del site me daba:
Código:
Fatal error: Call to undefined function language_attributes() in /home/luismarc/public_html/blog/wp-content/themes/shaded-blue-10/header.php on line 2
Este es el PHP del header.php (shaded-blue-10):
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php ?> <?php wp_title(); ?></title>

<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />



<?php wp_head(); ?>
</head>
<body>
<div id="page">


<div id="header">
    <div id="headerimg">
        <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
        <div class="description"><?php bloginfo('description'); ?></div>
    </div>
</div>

<ul id="themenu">
<li><a class="<?php if(is_home()) echo "active"?>" href="<?php echo get_option('home');?>">Home</a></li>
<?php wp_list_pages('depth=1&title_li=' ); ?>
</ul>
Queria pues ver que podria ser y como solucionarlo....

Gracias de Antemano!