Return to Snippet

Revision: 41386
at February 17, 2011 04:31 by rc2789


Initial Code
<?php query_posts('post_type=page&posts_per_page=1&page_id=2'); ?> 
    <?php while (have_posts()) : the_post(); ?>
      <h3><?php the_title(); ?></h3>
      <p><?php the_excerpt(); ?></p>    
    <?php endwhile;
    //Reset Query
    wp_reset_query(); ?>

Initial URL


Initial Description


Initial Title
Wordpress: Query page excerpt

Initial Tags
textmate

Initial Language
Other