Al final con este
Código PHP:
Ver original<?php
# get some posts
$posts = get_posts
(array('posts_per_page' => 10, 'post_type' => 'post'));
# loop through the results
foreach ($posts as $p){
# Get the permalink
# get_permalink()
echo '<a href="'. get_permalink($p->ID) .'" title="'. $p->post_title .'">'. $p->post_title .'</a>';
}
?>
Ya vez era otra cosa.