如何从补充工具栏中的Wordpress“最近帖子”中排除某些帖子?我看到很多关于排除类别的内容,而不是个别帖子。
答案 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。