benbrehaut / wp-vanlig

Blank WordPress starter theme made for being customisable.
2 stars 1 forks source link

Draft posts show in Sidebar Recent Posts #25

Closed benbrehaut closed 7 years ago

benbrehaut commented 7 years ago

For some stupid reason, WordPress by deafult function wp_get_recent_posts shows draft posts, which is stupid.

Can be fixed with adding to the array;

$recent_posts = wp_get_recent_posts(array( 'orderby' => 'post_date', 'numberposts' => 3, 'post_type' => 'post', 'post_status' => 'publish,', ) );