Admin Search for WordPress Plugin Directory
Admin Search is the #44 ranked search app on WordPress, with a 4.5 average rating from 18 reviews, as of Aug 31, 2026.
Admin Search is a WordPress Plugin Directory app by Andrew Stichbury. With a rating of 4.5★ from 18 reviews, it currently ranks #44 in the Search category.
AppRanks data: Admin Search ranks #44 in Search on WordPress Plugin Directory, placing it in the top 9% of that category.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Admin Search is a highly rated WordPress app with a limited review volume. It is listed in the Search category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 18 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (4.5★) signals consistent merchant satisfaction
- +Published by Andrew Stichbury — established developer track record
Cons
- −Limited review base (18) — ratings can shift significantly with new feedback
Looking to switch from Admin Search?
See Admin Search's alternatives ranked by audit score, rating, and review velocity.
How Admin Search works
Show full descriptionShow less
Admin Search makes searching your WordPress website easy by bringing results from all your post types, media, taxonomies, comments, users and admin pages together in a single, simple-to-use interface, seamlessly integrated into the WordPress admin interface.
Choose which post types and taxonomies are searched and the number of results displayed for each. Admin Search also supports custom post types and taxonomies.
Admin Search is a lightweight plugin with filter hooks for deep customization.
Features
Search everything on your WordPress site, anywhere
Simple and easy to use
Sources of search results are customizable
Extend the search query with filter hooks
Configure & Extend Admin Search can be extended by using filter hooks. The following filters are available:
admin_search_query to modify the search query string. The filter argument supplied is a string containing the search query
admin_search_sources to modify the search sources. The filter argument supplied is an array of sources, add, remove or modify sources
admin_search_posts_query to modify the WP_Query arguments array for all searched post types. The filter argument supplied is an array of WP_Query arguments, add, remove or modify supported arguments
admin_search_{Post Type}_query to modify the WP_Query arguments array for a specific post type. The filter argument supplied is an array of WP_Query arguments, add, remove or modify supported arguments. Replace {Post Type} with the name of the post type to modify
admin_search_terms_query to modify the get_terms arguments array for all searched terms (taxonomies). The filter argument supplied is an array of get_terms arguments, add, remove or modify supported arguments
admin_search_{Term}_query to modify the get_terms arguments array for a specific term (taxonomy). The filter argument supplied is an array of get_terms arguments, add, remove or modify supported arguments. Replace {Term} with the name of the term to modify
admin_search_comments_query to modify the WP_Comment_Query arguments array for all searched comments. The filter argument supplied is an array of WP_Comment_Query arguments, add, remove or modify supported arguments
admin_search_users_query to modify the WP_User_Query arguments array for all searched users. The filter argument supplied is an array of admin_search_users_query arguments, add, remove or modify supported arguments
admin_search_website_titles to modify the labels array for external websites. The filter argument supplied is an array of predefined domains and titles, add, remove or modify domains and titles
admin_search_pre_results and admin_search_post_results to modify the results array before or after results are appended to the array. The filter argument supplied is an empty array for admin_search_pre_results or search results for a given query for admin_search_post_results, add, remove or modify result items
admin_search_fields to modify the searchable fields array. The filter argument supplied is an array of searchable fields (post_title, post_name, post_excerpt and post_content)
admin_search_meta_queries to add custom fields to the searchable fields array. The filter argument supplied is an empty array. Use this filter instead of admin_search_fields when adding custom fields
Examples:
Modify the query string before a search is initiated
// Correct the spelling of dog when searching add_filter( 'admin_search_query', function( $query ) { if ( 'dog' === $query ) { $query = 'doggo'; }
return $query; } );
Modify the WP_Query parameters before a search is initiated
// Exclude post with the ID 96 add_filter( 'admin_search_posts_query', function( $query ) { $query['post__not_in'] = array( 96 );
return $query; } );
Add a custom field to the searchable fields
// Add the price custom field to the searchable fields add_filter( 'admin_search_meta_queries', function( $fields, $post_type ) { if ( 'post' === $post_type ) { $fields[] = 'price'; }
return $fields; }, 10, 2 );
Modify the search results after a search has initiated
// Add custom results from external API add_filter( 'admin_search_post_results', function( $results, $q ) { $results[ 'custom' ][ 'post_type' ] => array( 'name' => 'custom', 'label' => 'Custom' );
$json = file_get_contents( 'https://example.com?search=' . $q ); $obj = json_decode( $json );
foreach ( $obj as $item ) { $results[ 'custom' ][ 'posts' ][] = array( … ); }
return $results; }, 10, 2 );
Category rankings
As of Sep 6, 2026- Search#44of 536Top 9%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Competitors & alternatives
Admin Search doesn't have curated competitor matchups yet. Other tracked search apps on WordPress:
Where Admin Search stands in the Search category
Admin Search ranks #44 of 536 apps in the Search category, placing it in the top 9% of the listing.
Frequently asked questions
What is Admin Search?
Admin Search is an app for WordPress. It currently holds a 4.5-star rating from 18 merchant reviews, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. It is listed under the Search category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by Andrew Stichbury.
Who uses Admin Search?
Currently around 1,000 active stores have installed Admin Search. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Search category on WordPress.
Where does Admin Search rank on WordPress?
Admin Search currently sits at position #44 in the Search category on WordPress. That places it in the top 8% of 536 apps tracked in the same category. Category positions are read from the live marketplace ranking and refresh on each scrape, so the number you see here reflects the most recent crawl rather than a long-running average.