Option A — Plugin (recommended)
Three steps. Under a minute.
01 — Download and upload the plugin
Download the plugin zip from GitHub. In your WordPress admin go to Plugins → Add New → Upload Plugin, choose the zip, and click Install then Activate. The plugin is free.
02 — Paste your bot slug from the saavos dashboard
Sign up at saavos.com/signup, create a bot, and point it at your WordPress site URL. Once the crawler finishes, copy your bot slug. In WordPress admin go to Settings → saavos and paste the slug. Choose position (bottom-right or bottom-left) and save.
03 — Done — the widget loads in your site footer
The plugin uses wp_footer to inject the script tag on every public page. No theme edits, no shortcodes, no page builder blocks needed. It respects the Enable on scope setting — all pages, posts only, pages only, or custom post types.
Option B — Script tag (no plugin required)
One snippet, works everywhere. Prefer not to install a plugin? Paste the embed snippet into any widget or plugin that lets you add code to your page body — for example the Custom HTML widget in Appearance → Widgets, or any “Header & Footer Scripts” plugin.
<script src="https://saavos.com/embed.js" data-bot="YOUR_BOT_SLUG" async></script>
Replace YOUR_BOT_SLUG with the slug from your dashboard. The script loads asynchronously — no layout shift, no Lighthouse hit.
Custom hooks and filters (for developers)
The plugin exposes WordPress filters so developers can control widget visibility programmatically without editing plugin files.
// Hide the bot on a specific page
add_filter( 'wp_footer', function() {
is_page( 'contact' ) ? null : do_action("wp_footer");
}
// scope options: all | posts | pages | custom
// position options: bottom-right | bottom-leftThe plugin reads settings stored in the WordPress options table under fiveminbot_settings. All inputs are sanitized and validated before use. The bot slug is restricted to alphanumeric characters and hyphens only.
Your WordPress site, with real AI answers.
Free plugin. Free saavos plan. No credit card to start — train your bot on your WordPress URL in minutes. Try free or ask a question.