Add an AI chatbot to WordPress in under a minute.
Two ways to add saavos to WordPress: upload the free plugin via WP Admin, or drop one script tag into any Custom HTML widget. A Claude-powered chatbot appears on every page — no theme edits required.
Three steps. Under a minute.
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.
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.
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.
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.
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-left
The 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.