Is there a way to export each post page link from a wordpress blog, Basicly i want to do some deep link promotion and would like to export a csv with the post title and page link. is there an easy way to do this without writing my own script?
Can't think of an elegant way to do this, but the script you dread writing would be pretty straightforward. <?php while (have_posts()) : the_post(); the_permalink(); echo ","; the_title(); echo "<br />"; endwhile; ?> Code (markup): ... just off the top of my head, that should work.
are u looking something like this: admin dashboard > manage > export > browse for the file and just upload.