Ver Mensaje Individual
  #8 (permalink)  
Antiguo 29/06/2009, 12:50
Avatar de Ratzo
Ratzo
 
Fecha de Ingreso: octubre-2004
Ubicación: Morelia, México
Mensajes: 146
Antigüedad: 19 años, 6 meses
Puntos: 8
Respuesta: Insertar feed rss en wp

Prueba con este código

Código PHP:
include_once(ABSPATH WPINC '/rss.php');

// insert the feed URL here
$rss = @fetch_rss('http://spoily.com/feed/');
if ( isset(
$rss->items) && != count($rss->items) ) {
    echo 
'<ul>';
    
// set the number of items from the feed to display (10)
    
$rss->items array_slice($rss->items05);
    foreach (
$rss->items as $item ) {
        echo 
'<li>';
            echo 
'<a href="' wp_filter_kses($item['link']) . '">' wp_specialchars($item['title']) . '</a>';
        echo 
'</li>';
    }
    echo 
'</ul>';

cambia http://spoily.com/feed/ por el url del feed que deseas agregar y el 5 por el número de items que deseas mostrar.
__________________
Directorio Web | Netbooks