My staff page doesn't work. It instead seems to display the loop from the sidebar. I have no idea why that is and no idea how that happened or how to fix it. Any ideas?
My staff page doesn't work. It instead seems to display the loop from the sidebar. I have no idea why that is and no idea how that happened or how to fix it. Any ideas?
Have you figured this out? I'm having a similar problem with my calendar page.
I thought that including the loop in a static page was supposed to show the contents of that page... not the posts...
I ended up figuring out a fairly inefficient fix:
For each page I had, I added:
<?php
query_posts('pagename=about'); //retrieves the about page only
?>
I then had a different template for each page (only about 3 of them so it wasn't a big deal). Each page would be assigned to a specific template, and the template would grab the page using that above code. Probably not the best way, though. I think it had to do with my already having a loop on the page, so it would just use the already-running loop instead of starting a new one. So this fixes that... not sure if it'll help you.
This topic has been closed to new replies.