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:00 pm
#141170
Participant
**
$sticky = get_option ( ‘sticky_posts’ );
$args = array( ‘numberposts’ => 3, ‘post__in’ => $sticky );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post); ?>
“>
**
You can also bring a sticky post forward to the front page with this bit of code. Just put it in the loop.