| 开发者 | bublly |
|---|---|
| 更新时间 | 2026年7月30日 18:39 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPL-2.0+ |
| 版权网址: | 版权信息 |
bublly_should_load_widget filterbublly folder to /wp-content/plugins/Log in to desk.bublly.com, go to Settings → Widget, and copy the API key shown there.
Yes. This is intentional — it is a publish key designed to be public, similar to how Google Analytics tracking IDs work. It cannot be used to access your private data.
Add widget.bublly.com to your script-src allowlist. Without this, the widget
script will be blocked by the browser.
Yes. The plugin exposes a bublly_should_load_widget filter. Cookie consent plugins
can hook into this to delay the widget until the visitor gives consent:
add_filter( 'bublly_should_load_widget', function() { return has_consent_for_marketing(); } );