add_action('pre_get_posts', function($query) { if (!is_admin() && $query->is_main_query() && is_page('aktuelles')) { $query->set('meta_query', array( array( 'key' => '_wp_hide_post', 'compare' => 'NOT EXISTS' ) )); } });