Skip to content

Instantly share code, notes, and snippets.

@Aaron2963
Created December 16, 2024 03:51
Show Gist options
  • Save Aaron2963/0ede330e585c9d7b80450bb9ed1a8659 to your computer and use it in GitHub Desktop.
Save Aaron2963/0ede330e585c9d7b80450bb9ed1a8659 to your computer and use it in GitHub Desktop.
Exclude pages from wp query with ElasticPress

1. Prevent pages being indexed

add_filter('ep_pre_index_post', function ($should_index, $post_args, $post) {
    // Exclude pages by post type
    if ($post->post_type === 'page') {
        return false;
    }

    return $should_index;
}, 10, 3);

2. Filter query result

add_filter('ep_wp_query_search_query_args', function ($query_args) {
    if (!is_admin() && isset($query_args['post_type']) && is_array($query_args['post_type'])) {
        // Remove 'page' from the post types searched
        $query_args['post_type'] = array_diff($query_args['post_type'], ['page']);
    }

    return $query_args;
});

3. Reindex Elasticsearch

wp elasticpress index --setup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment