I have created a single page design in which all of the pages within the website are displayed on the front page (their title and content only). I'm wondering what the best way is to display this information so if the user adds a new page it will display on the front page as well.
I was thinking something like:
query_posts('yadayada');
begin loop
echo h1 my title /h1
echo mycontent
end loop
Thanks!