
Instant suggestions on the front end. As a visitor types, matching help articles appear below the search box with the query term highlighted in the title and a contextual excerpt from the matching content.
WordPress searches posts with a LIKE '%term%' scan of the posts table. It cannot rank, it cannot tolerate a typo, and it gets slower as a site grows.
Coywolf Search replaces that with a proper search engine, built out of two small database tables of its own:
k1 and b exposed so you can tune term saturation and how much long posts are penalised.get_search_form().GET /wp-json/coywolf-search/v1/search?q=… returns the same ranked results as a search page, with a highlighted snippet for each, so you can build a custom search experience against the same engine.It replaces search without replacing your theme. /?s= and get_search_form() keep working, your search template renders the results, and pagination behaves normally — the plugin changes which posts come back, not how they look. If the index is empty, or anything at all goes wrong, WordPress runs its own search instead. Search never breaks the page.
Privacy and safety