I've got a wordpress page which has a map of a recent trip I did.
http://www.marksmayo.com/south-american-journey/
If I then write a basic php query function to list all posts in the category 'south america 2010', it works fine for 4-5 posts, but as I added posts to the category, it started running out of memory with this query (giving errors on the page), and now just doesn't load anything below the map.
The same code is on:
http://www.marksmayo.com/northern-europe-and-asia-mission/
and is currently working, but as I add more posts that'll presumably stop too.
The code is:
<?php
// The Query
query_posts( array ( 'category_name' => 'south america 2010', 'posts_per_page' => -1 ) );
// The Loop
while ( have_posts() ) : the_post();
echo '<li><a href=';
the_permalink();
echo'>';
the_title();
echo '</a></li>';
endwhile;
// Reset Query
wp_reset_query();
?>