Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Promoting Posts in WordPress to the Front Page Re: Promoting Posts in WordPress to the Front Page

#141172
chrisburton
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?