- <?php if ( is_front_page() ) : ?>
- <?php $staticPage = new WP_Query(); $staticPage->query('page_id=123'); ?>
- <?php while ($staticPage->have_posts()) : $staticPage->the_post(); ?>
- <div id="static-content"><?php the_content(); ?></div>
- <?php endwhile; ?>
- <?php endif; ?>
