Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.     global $post;
  3.     $homewp = get_option('smoothschool_home_wp_pages');
  4.     $page = get_page_by_title($homewp);
  5.     $myposts = get_posts('post_type=page&p=$page->ID');
  6.     foreach($myposts as $post) :
  7.     setup_postdata($post);
  8.     ?>
  9.     <h2><?php the_title(); ?></h2>
  10.     <?php the_excerpt(); ?>
  11.     <?php endforeach; ?>