The Quick Search module makes it faster to navigate your WordPress site by adding a universal search bar to the admin area. Quickly find posts, pages, users, media, settings, and more with fuzzy matching, keyboard shortcuts, and context-aware results—streamlining your workflow.
To enable the Quick Search Module:
Once enabled, the Quick Search bar will be available in the WordPress admin bar at the top of your screen. Use it to quickly find and navigate to any content, settings, or features in your WordPress admin.
Ctrl+K (Windows/Linux) or Cmd+K (Mac) to open the search barEsc to close the search or Tab to navigate between resultsThe module provides several filters and actions for developers:
// Add custom search results
add_filter('wpextended/search_results', function($results, $search_term, $is_admin) {
// Add your custom results
$results['custom'] = [
[
'label' => 'Custom Result',
'url' => admin_url('custom-page.php'),
'type' => 'Custom Type',
'description' => 'Custom description'
]
];
return $results;
}, 10, 3);
// Modify maximum number of results
add_filter('wpextended/max_search_results', function($max) {
return 15; // Increase from default 8
});
You can add custom search integrations:
// Register a custom search integration
add_action('init', function() {
if (class_exists('WpextendedModulesQuickSearchProBootstrap')) {
$quick_search = WpextendedModulesQuickSearchProBootstrap::get_instance();
$quick_search->addIntegration('custom', function($search_term, $is_admin) {
// Your search logic here
return [
[
'label' => 'Custom Result',
'url' => '#',
'type' => 'Custom Type'
]
];
});
}
});
This module is ideal for:
Still need help? Create a support ticket and our team will get back to you shortly.