Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.27 KB | Hits: 36 | Expires: Never
Copy text to clipboard
  1. <?php if ( is_front_page() ) : ?>
  2. <?php $staticPage = new WP_Query(); $staticPage->query('page_id=123'); ?>
  3. <?php while ($staticPage->have_posts()) : $staticPage->the_post(); ?>
  4.     <div id="static-content"><?php the_content(); ?></div>
  5. <?php endwhile; ?>
  6. <?php endif; ?>