Hi I am looking for plugin or at least a way, to get all post titles and their urls (rewriten ones) out of my wordpress. Do you maybe know a way to do that? Thank you for your help in advance!
I don't know a plugin which does it, but this script will do it: <?php $all_posts = get_posts("numperposts=-1"); foreach($all_posts as $post){ echo("<p><div>Post title: ".$post->post_title."</div><div>URL: ".get_permalink($post->ID)."</div></p><br />"); } ?> PHP:
Matt18, Add the code to a file (for example page.php) and open a page of the site. I think I has to work.