从补充工具栏中的Wordpress“最近的帖子”中排除某些帖子?

时间:2014-03-09 21:28:30

标签: wordpress

如何从补充工具栏中的Wordpress“最近帖子”中排除某些帖子?我看到很多关于排除类别的内容,而不是个别帖子。

1 个答案:

答案 0 :(得分:2)

您可以通过widget_posts_args过滤器从

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;
}

只需将此代码复制到主题的functions.php文件中即可。

此过滤器位于wp-includes/default-widgets.php。来源视图here

相关问题