WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: init-live-search (Used by 18 domains)

Init Live Search – AI-Powered, Related Posts, Slash Commands

πŸ‘€ Init HTML πŸ“¦ v1.8.9 πŸ”— Plugin Homepage

Deliver an ultra-responsive search experience to your visitors β€” no page reloads, no jQuery, no lag. Init Live Search is a modern, lightweight, and fully accessible live search solution for WordPress β€” now with tag-aware matching, SEO metadata support, ACF integration, WooCommerce product filters, and customizable UI presets.

It replaces the default with a clean, intuitive search modal powered entirely by the WordPress REST API. Everything loads in real-time β€” with zero disruption to browsing flow.

Perfect for content-heavy blogs, WooCommerce stores, or even headless sites. Every interaction is fast, fluid, and designed to work across devices.

It also brings AI-powered related posts and an advanced keyword generator β€” giving your visitors smarter ways to discover content.

This plugin is part of the Init Plugin Suite β€” a collection of minimalist, fast, and developer-focused tools for WordPress.

GitHub repository: https://github.com/brokensmile2103/init-live-search

What’s New in Version 1.8.x

  • AI-Powered Related Posts: brand new [init_live_search_related_ai] shortcode

    • Uses multi-signal scoring (tags, series, title bigrams, same_keyword via ACF, category, views, comments, freshness)
    • Shares templates with [init_live_search_related_posts] (no extra styling needed)
    • Fully filterable via new developer hooks: ai_candidates, ai_signals, ai_weights, ai_score
  • Advanced Keyword Generator: upgraded algorithm for admin keyword suggestions

    • Replaced TF-IDF with BM25 term weighting
    • Added NPMI (fixed probability base) and Log-Likelihood Ratio (Dunning) for collocation strength
    • Generates bigrams and trigrams for richer, more specific keyword suggestions
    • Cross-document frequency penalty down-ranks phrases that are too generic across the site
    • MMR (Maximal Marginal Relevance) selection ensures diverse, non-redundant final keywords
    • Title-only source: clean signal, no excerpt noise, works reliably across all site types
    • Unicode-safe, locale-aware stop words (Vietnamese & English), and soft fallback mode
  • 404 Smart Redirect

    • Added β€œAuto Redirect 404 to Best Match” mode driven by Init Live Search scoring
    • Fully respects β€œPost Types to Include” settings
    • Uses unified resolver + filters for extensible post-type handling
    • Safety checks to avoid loops, invalid targets, and cross-type mismatches
  • Developer Filters Expansion

    • New filters added for AI related posts and keyword signals
    • Complete list now includes over 20 filters (*_fallback, *_post_ids, *_results, *_weights, *_commands, etc.)
    • Developers can hook into candidate pools, signal scores, and schema output with fine-grained control
  • Performance Optimizations

    • Smarter candidate pooling for related posts (recent + context-based)
    • Pre-cached scoring loop for AI signals to minimize queries
    • Safer regex handling in keyword processing to avoid PCRE errors
    • Reduced memory footprint in bigram statistics without sacrificing accuracy
  • Backward Compatible Enhancements

    • [init_live_search_related_posts] and [init_live_search_related_ai] now share the same rendering pipeline
    • Existing templates, schema, and CSS continue to work without modification
    • Auto insert related posts still works and can be switched to AI mode via shortcode override

Features

Packed with everything a modern live search needs β€” and more:

  • Live search via REST API (no admin-ajax, no jQuery)
  • Smart tag-aware search mode (title + tag match)
  • SEO metadata support: Yoast, Rank Math, AIOSEO, SEOPress, TSF
  • ACF field matching and customizable filters
  • Synonym expansion with fallback scoring logic
  • Slash commands: /recent, /popular, /tag, /id, /sku, /price, /coupon, etc.
  • WooCommerce support: search by product, SKU, brand, attribute, variation, coupon
  • Clean modal UI with keyboard navigation ( Enter Esc)
  • Optional voice input (SpeechRecognition)
  • Tooltip Quick Search (select text to trigger)
  • Favorites system via heart icon or /fav commands
  • Infinite scroll and smart category filter (no extra API)
  • Deep linking: ?modal=search&term=...
  • New [init_live_search] shortcode: insert input or icon anywhere
  • UI presets: default, fullscreen, topbar β€” with full CSS override
  • Local caching + analytics (CSV export, no personal data)
  • Developer-ready: custom slash commands, REST filters, JS hooks

Dark Mode Support

Enable dark mode for the modal by either:

  1. Adding the dark class:

    document.querySelector(β€˜#ils-modal’)?.classList.add(β€˜dark’);

  2. Or using a global config:

    window.InitPluginSuiteLiveSearchConfig = { theme: β€˜dark’ };

Options: dark, light, auto

Admin Settings

  • Choose post types to include in search
  • Configure modal triggers (input focus, triple click, Ctrl+/)
  • Enable slash commands (e.g. /recent, /tag, /id)
  • Enable support for + and - keyword operators (must-have, must-not-have)
  • Set default slash command to run on modal open (only if slash is enabled)
  • Set debounce time and max results
  • Choose search mode (title-only, tag-aware, full content)
  • Define custom ACF fields to include in search (optional)
  • Enable Search in SEO Metadata (Yoast, Rank Math, etc.)
  • Toggle excerpt display below each result (1-line contextual snippet)
  • Toggle fallback logic (bigram/trim)
  • Enable synonym expansion and manage synonym mappings (JSON editor)
  • Enable Search Analytics to log queries (no personal data stored)
  • Set max words for tooltip search
  • Enable voice input (SpeechRecognition API)
  • Enable result caching (localStorage)
  • Choose frontend UI style (default, fullscreen, or topbar)
  • Allow theme override via init-live-search/style.css
  • Automatically insert related posts after content or comments (optional)
  • Option to disable all built-in CSS completely
  • Add default UTM parameter to result links
  • Define or auto-generate keyword suggestions

Keyboard Shortcuts

  • Arrow Up / Down β€” navigate between results
  • Arrow Right β€” add selected result to favorites (if not already added)
  • Arrow Left β€” remove selected result from favorites
  • Enter β€” open selected result or submit
  • Escape β€” close modal and reset state
  • Slash (/) β€” start a command instantly (e.g., /recent, /id 123)

Developer Reference: Shortcodes, Filters, and Hooks

Shortcodes

[init_live_search]
Display a search icon or input anywhere that opens the Init Live Search modal.

Attributes:
– type: icon (default) or input – choose between a clickable icon or a search box
– placeholder: (optional) text inside the input if type="input"
– label: (optional) adds a label next to the icon if type="icon"
– class: (optional) add custom classes like dark, my-style, etc.
– stroke_width: (optional) set the stroke width for the search icon (default: 1)
– radius: (optional) override the border radius of the input form (default: 9999px from CSS; only applied if value differs)

[init_live_search_related_posts]
Display a list of related posts (static HTML) based on post title or keyword, optimized for SEO and fully themable.

Attributes:
– id: (optional) the post ID to find related posts for (defaults to current post)
– count: (optional) number of posts to display (default: 5)
– keyword: (optional) override the keyword used for finding related posts
– template: (optional) layout template to use β€” default, grid, classic, compact, thumbright
– css: 1 (default) or 0 – disable default CSS if you want to fully style it yourself
– schema: 1 (default) or 0 – disable JSON-LD ItemList output for SEO schema

[init_live_search_related_ai]
Display a list of AI-powered related posts using multi-signal scoring (tags, series, title bigrams, same_keyword via ACF, category, views, comments, freshness).
Uses the same templates as [init_live_search_related_posts], so no extra styling is required.

Attributes:
– id: (optional) the post ID to find related posts for (defaults to current post)
– count: (optional) number of posts to display (default: 5)
– post_type: (optional) restrict results to one or more post types (default: post)
– template: (optional) layout template to use β€” default, grid, classic, compact, thumbright
– css: 1 (default) or 0 – disable default CSS if you want to fully style it yourself
– schema: 1 (default) or 0 – disable JSON-LD ItemList output for SEO schema

Filters for Developers

Init Live Search includes many filters to help developers customize behavior and output at various stages of the search flow.

Full documentation (with code samples & advanced usage): Using Filters in Init Live Search

Popular filters

init_plugin_suite_live_search_enable_fallback
Enable or disable fallback logic when few results are found.

init_plugin_suite_live_search_post_ids
Customize the array of post IDs returned from the query.

init_plugin_suite_live_search_result_item
Modify each result item before it’s sent in the response.

init_plugin_suite_live_search_results
Filter the final array of results before being returned.

init_plugin_suite_live_search_query_args
Modify WP_Query arguments for different commands.

init_plugin_suite_live_search_ai_weights
Adjust AI scoring weights for related posts.

(…and more in the full docs)

REST API Endpoints

Fully documented, lightweight, and API-first endpoints. Ideal for headless or decoupled builds.
All endpoints are under namespace: initlise/v1

Full documentation (with examples & parameters): REST API Endpoints in Init Live Search

Popular endpoints

/search?term=example
Standard search query (uses plugin settings like post types, search mode, fallback…).

/id/{id}
Fetch a post by ID (returns permalink).

/recent
Fetch the most recent posts.

/tax?taxonomy=category&term=slug-or-id
Fetch posts by taxonomy (category, tag, or custom).

/related?title=page-title&exclude=ID
Fetch posts related to the current page title.

/product?...
Fetch WooCommerce products with flexible query parameters.

(…and more in the full docs)

License

This plugin is licensed under the GPLv2 or later.
You are free to use, modify, and distribute it under the same license.

DomainExposuresHeadersLast Checked
t*v*b*r*d*r*-*i*c*t*n*i*.de βœ… F 2026-06-18 20:09:06
m*r*i*t*o*.com πŸ‘€ C 2026-06-11 09:19:36
s*y*h*e*e*.vip πŸ‘€ F 2026-06-08 02:09:26
j*a*g*a*t*o*.now βœ… F 2026-05-28 07:36:49
m*r*i*s*a*s.org βœ… F 2026-05-28 07:36:49
i*i*h*m*.com βœ… F 2026-05-27 03:57:28
c*a*c*n*a*.i*i*h*m*.com βœ… F 2026-05-25 12:47:49
p*e*s.i*i*h*m*.com βœ… F 2026-05-25 03:21:06
d*a*e*t*u*e*f*l*.net βœ… F 2026-05-23 15:38:46
s*a*d*o.es (WP 6.9.4) βœ… F 2026-05-22 10:20:53
d*a*e*t*u*e*.uk βœ… F 2026-05-17 03:34:09
t*n*m*e*.com βœ… C 2026-05-11 15:02:38
t*u*i*n*r*y*n.com βœ… C 2026-05-09 00:46:43
w*b*h*i*g*i*p.com (WP 6.8.5) βœ… F 2026-05-08 15:38:17
s*r*c*a*n*l*v.com (WP 6.9.4) βœ… F 2026-05-07 23:37:12
e*.i*i*h*m*.com βœ… F 2026-05-04 09:57:23
m*a*t*a*.sport (WP 6.9.4) βœ… F 2026-05-04 03:02:34
a*v*c*t*t*n*o*.com βœ… F 2026-05-04 00:11:26

Top 50 Plugins

Plugin Count
elementor 1,882,876
contact-form-7 1,856,074
elementor-pro 1,094,432
woocommerce 848,744
revslider 643,124
jetpack 481,366
js_composer 451,122
wp-rocket 350,775
gravityforms 326,098
essential-addons-for-elementor-lite 311,691
complianz-gdpr 271,721
cookie-law-info 244,201
instagram-feed 237,408
google-site-kit 230,914
sitepress-multilingual-cms 230,599
google-analytics-for-wordpress 221,854
elementskit-lite 220,541
header-footer-elementor 218,486
bluehost-wordpress-plugin 192,610
gutenberg 167,143
gutenberg-core 166,574
cookie-notice 162,362
litespeed-cache 143,013
the-events-calendar 139,315
wpforms-lite 133,916
gtranslate 133,635
astra-sites 122,971
popup-maker 120,743
tablepress 117,263
woocommerce-payments 116,033
coblocks 103,863
honeypot 102,441
astra-addon 98,925
duracelltomi-google-tag-manager 98,073
wp-smushit 97,427
all-in-one-seo-pack 96,908
layerslider 95,366
bb-plugin 93,293
megamenu 91,277
premium-addons-for-elementor 90,458
akismet 88,583
mailchimp-for-wp 87,016
cleantalk-spam-protect 86,271
woocommerce-gateway-stripe 85,916
ml-slider 85,358
borlabs-cookie 84,341
wp-pagenavi 83,686
fusion-builder 83,000
ewww-image-optimizer 82,162
smart-slider-3 81,554

Top 50 Themes

Theme Count
hello-elementor 643,853
Divi 534,207
astra 440,149
flatsome 150,511
generatepress 136,499
Avada 129,452
pub 114,790
twentytwentyfour 113,255
sydney 108,766
oceanwp 87,059
kadence 82,810
enfold 75,162
salient 69,136
twentyseventeen 59,140
h4 58,772
bb-theme 56,716
betheme 54,411
blocksy 53,536
cocoon-master 52,931
dt-the7 48,114
twentytwentyfive 46,609
neve 41,432
Avada-Child-Theme 39,093
woodmart 34,663
gox 34,535
bridge 34,125
twentytwentyone 33,488
lightning 32,581
twentytwenty 31,549
voxel 29,231
swell 29,223
Impreza 27,834
bricks 27,131
sinatra 26,366
twentytwentythree 25,139
Newspaper 25,107
kubio 22,381
twentytwentytwo 20,615
uncode 20,068
twentysixteen 19,431
epik-redesign 19,302
storefront 18,651
pro 18,269
Total 15,397
extendable 15,157
yith-wonder 14,147
hello-theme-child-master 14,046
yootheme 13,615
themify-ultra 13,575
hestia 13,559