A mi se me hace que los últimos post están en la parte de arriba... Creo... o el RSS está en desorden
Prueba así:
Código PHP:
Ver original<?php
$sxe = new SimpleXMLElement('http://chacha102.com/feed/', null, true);
$item = $sxe->xpath('//item[position()=1]');
$item = $item[0];
$ns = $item->getNameSpaces(true);
$cn = $item->children($ns['content']);
echo $item->description; //Descripción corta
echo '<hr />';
echo $cn->encoded; //Descripción larga
sino indica cual post debería mostrar, para entenderte mejor.