by QuadLayers
4.8 (214 reviews)
Search Exclude
Hide any post or page from the search results.
Compatible with WP 6.9
v2.6.1
Current Version v2.6.1
Updated 4 days ago
Last Update on 16 Jan, 2026
Synced 8 hours ago
Last Synced on
Rank
#727
—
No change
Active Installs
50K+
-16.2%
KW Avg Position
182
-1 better
Downloads
1.9M
+146 today
Support Resolved
50%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(214 reviews)
Next Milestone 60K
50K+
60K+
13
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 1,341 more installs to reach 60K+
Rank Changes
Current
#727
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.8
214 reviews
Overall
96%
5
200
(93%)
4
5
(2%)
3
1
(0%)
2
1
(0%)
1
7
(3%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| search exclude | 182 | — | Tag | 9 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
2
Total Threads
1
Resolved
1
Unresolved
50%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.6.1
- Last Updated
- Jan 16, 2026
- Requires WP
- 4.7+
- Tested Up To
- 6.9
- PHP Version
- 5.6 or higher
- Author
- QuadLayers
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 214
- Support Threads
- 2
- Resolved
- 50%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Search Exclude
No, it does not affect crawling and indexing by search engines. The ONLY thing it does is hiding selected post/pages from your site search page. Not altering SEO indexing. If you want posts/pages to be hidden from search engines you may add the following snippet to your functions.php: function add_meta_for_search_excluded() { global $post; if (false !== array_search($post->ID, get_option('sep_exclude', array()))) { echo '<meta name="robots" content="noindex,nofollow" />', "\n"; } } add_action('wp_head', 'add_meta_for_search_excluded'); Note: already indexed pages will remain indexed for quite a while. In order to remove them from Google index, you may use Google Search Console (or similar tool for other engines).
Yes. There is an action searchexclude_hide_from_search. You can pass any post/page/custom_post ids as an array in the first parameter. The second parameter specifies state of visibility in search. Pass true if you want to hide posts/pages, or false - if you want show them in the search results. Example: Let's say you want "Exclude from Search Results" checkbox to be checked off by default for newly created posts, but not pages. In this case you can add following code to your theme's function.php: add_filter('default_content', 'exclude_new_post_by_default', 10, 2); function exclude_new_post_by_default($content, $post) { if ('post' === $post->post_type) {
} } Also there is a filter searchexclude_filter_search. With this filter you can turn on/off search filtering dynamically. Parameters: $exclude - current search filtering state (specifies whether to filter search or not) $query - current WP_Query object By returning true or false you can turn search filtering respectively. Example: Let's say you need to disable search filtering if searching by specific post_type. In this case you could add following code to you functions.php: add_filter('searchexclude_filter_search', 'filterForProducts', 10, 2); function filterForProducts($exclude, $query) { return $exclude && 'product' !== $query->get('post_type'); }