Title: calanos's Replies | WordPress.org

---

# calanos

  [  ](https://wordpress.org/support/users/calanos/)

 *   [Profile](https://wordpress.org/support/users/calanos/)
 *   [Topics Started](https://wordpress.org/support/users/calanos/topics/)
 *   [Replies Created](https://wordpress.org/support/users/calanos/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/calanos/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/calanos/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/calanos/engagements/)
 *   [Favorites](https://wordpress.org/support/users/calanos/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Page doesn’t display its content](https://wordpress.org/support/topic/page-doesnt-display-its-content/)
 *  Thread Starter [calanos](https://wordpress.org/support/users/calanos/)
 * (@calanos)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/page-doesnt-display-its-content/#post-1004844)
 * 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.

Viewing 1 replies (of 1 total)