la prima cosa che mi viene in mente è che potresti leggere il feed del blog:

Codice PHP:
$feedUrl 'www.tuoblog.com/feed'
$rawFeed file_get_contents($feedUrl);    
$xml = new SimpleXmlElement($rawFeed); 
e poi potresti recuperarti l'ultimo elemento inserito:


Codice PHP:
$xml->channel->item[0