Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/11/2009, 08:03
gerazmv
 
Fecha de Ingreso: octubre-2004
Ubicación: Uruguay
Mensajes: 386
Antigüedad: 20 años, 1 mes
Puntos: 4
Respuesta: Sincronizar web php con wordpress

lastRSS.php con el puedes tomar los feeds de tu sitio y tomar la ultima noticia. aqui el fuente de tomar todas las noticias de los feeds

Código PHP:
            include "lastRSS.php"
            
$rss = new lastRSS
            
$rss->cache_dir './temp'
            
$rss->cache_time 1200
            
$rss->items_limit 0
            if (
$rs $rss->get('http://www.dominio.com/feed')) { 
                foreach(
$rs['items'] as $item) { 
                    echo 
"<h2><a href=\"$item[link]\">".$item['title']."</a></h2><div>".$item['description']."</div>" ;
     
                } 
            }