Soruyu anlamadım biraz açarmısınız?
Tamam ben halletim, sayfa şablonu ile php kodları kullandım. istediğim liste oluştu.
/*
Template Name: Yazıları Getir
*/
$args= array(
'posts_per_page' => -1
);
query_posts($args);
if(have_posts()) :
while(have_posts()) : the_post();
the_title();
echo " ";
the_permalink();
echo " http://www.siteadresi.com/?p=";
the_ID();
echo "";
echo "
";
endwhile;
endif;