Home › Forums › Other › Promoting Posts in WordPress to the Front Page › Re: Promoting Posts in WordPress to the Front Page
July 1, 2013 at 3:12 pm
#141172
Participant
$sticky = get_option( ‘sticky_posts’ );
$args = array( ‘numberposts’ => 3, ‘post__in’ => $sticky );
$lastposts = get_posts( $args );
foreach($lastposts as $post):
setup_postdata($post);
the_title();
the_excerpt();
endforeach;
@eristic am I missing something?