如果要从所有查询中排除帖子,如果您不是“管理员”,并排除“单个”查询-以便打开帖子,可以使用以下方法:
add_action(\'pre_get_posts\', \'exclude_posts_from_all_queries\');
function exclude_posts_from_all_queries($query) {
$exclude_posts = array(\'9\');
if ( !is_admin() && !is_single() ) {
$query->set(\'post__not_in\', $exclude_posts);
}
}
只需将Posts ID号添加到$exclude\\u Posts数组中即可。
希望有帮助,干杯