MontyHall
MontyHall

Reputation: 524

Exclude Certain Posts From Wordpress's 'Recent Posts' in the Sidebar?

How Can I Exclude Certain Posts From Wordpress's 'Recent Posts' in the Sidebar? I see a lot of content on excluding categories, not individual posts.

Upvotes: 1

Views: 934

Answers (1)

andreivictor
andreivictor

Reputation: 8451

You can exclude posts from the Recent Posts widget via the widget_posts_args filter:

add_filter( 'widget_posts_args', 'exclude_posts_wpse_103570');

function exclude_posts_wpse_103570( $args ){
    $args['post__not_in'] = array( 123, 234, 345 ); // replace with your post ids
    return $args;
}

Just copy this code into your theme's functions.php file.

This filter is located in wp-includes/default-widgets.php. Source view here.

Upvotes: 2

Related Questions