Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/09/2008, 13:07
frueda30
 
Fecha de Ingreso: septiembre-2008
Mensajes: 7
Antigüedad: 15 años, 7 meses
Puntos: 0
Respuesta: Error de lectura XML

Uno tiene que aceptar cuando es ignorante jejeje... que codigo, q pagina?? digo, yo he traducido algunas cosas en la pagina,, en footer-php, search.php etc,, pero de cual de esos archivos me hablas??

te escribo el codigo de rss.php

<?php
/**
* Outputs the RSS feed RDF format using the feed-rss.php
* file in wp-includes folder.
*
* This file only sets the feed format and includes the
* feed-rss.php.
*
* This file is no longer used in WordPress and while it is
* not deprecated now. This file will most likely be
* deprecated or removed in a later version.
*
* @package WordPress
*/

if (empty($wp)) {
require_once('./wp-load.php');
wp('feed=rss');
}

require (ABSPATH . WPINC . '/feed-rss.php');

?>

y RSS2


<?php
/**
* Outputs the RSS2 feed XML format using the feed-rss2.php file in wp-includes
* folder. This file only sets the feed format and includes the feed-rss2.php.
*
* This file is no longer used in WordPress and while it is not deprecated now.
* This file will most likely be deprecated or removed in a later version.
*
* The link for the rss2 feed is /index.php?feed=rss2 with permalinks off.
*
* @package WordPress
*/

if (empty($wp)) {
require_once('./wp-load.php');
wp('feed=rss2');
}

require (ABSPATH . WPINC . '/feed-rss2.php');

?>