Necesitas usar algún "_fetch_" .. ya sea a un array .. o similar el cual te entrega el resultado hacia un array (o similar) para que lo puedas recorrer.
Sería algo tipo:
Código PHP:
$result = mysql_query("SELECT DATE_FORMAT(post_date,'%d.%m.%Y')AS fecha, post_title, guid FROM wp_posts ORDER BY id DESC LIMIT 3", $link);
while ($row=mysql_fetch_array($result)){
echo $row['fecha']." --> ".$row['post_title']."<br>";
}
Un saludo,