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

#141170
eristic
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.