la prima cosa che mi viene in mente è che potresti leggere il feed del blog:
e poi potresti recuperarti l'ultimo elemento inserito:Codice PHP:
$feedUrl = 'www.tuoblog.com/feed';
$rawFeed = file_get_contents($feedUrl);
$xml = new SimpleXmlElement($rawFeed);
Codice PHP:
$xml->channel->item[0]