Description
The DubBot Plugin connects to your DubBot account and displays accessibility, spelling, links, SEO, best practices, and custom web governance rule results directly within WordPress.
This plugin requires an “Embed Key,” which can be requested by contacting DubBot support at help@dubbot.com.
Features:
– Highlight issues from DubBot inside your WordPress editor.
– View results from:
– Accessibility
– Best Practices
– Spelling
– Links
– Web Governance
– SEO
A DubBot account is required to use this plugin.
WordPress Multisite
On a WordPress multisite network, a network administrator should activate DubBot for the network from Network Admin > Plugins. Configure network defaults at Network Admin > Settings > DubBot.
Site administrators can use DubBot while editing their own site’s content. By default, they can also override the network defaults at Settings > DubBot for their own site. A network administrator can disable site overrides from the DubBot network settings page; existing site-specific settings are preserved but ignored while overrides are disabled.
External services
This plugin requires a DubBot account to render results from the DubBot API.
On the page/post view and edit screens, the plugin sends the Embed Key and the page/post’s URL to the DubBot API to fetch and display any issues for the page.
For new DubBot customers, request a demo to get started.
For existing customers, contact DubBot support at help@dubbot.com to request an Embed Key.
DubBot Privacy Policy and Terms of Service
Troubleshooting
Customizing the page URL
By default, DubBot sends WordPress’s permalink for the page or post to the DubBot API. If the public URL differs from the WordPress permalink, such as when a domain mapping plugin is used, add a dubbot_page_url filter in a site-specific plugin or your theme’s functions.php file:
add_filter('dubbot_page_url', function ($url, $post_id) { return domainmap_map_url($url); }, 10, 2);
The filter receives the WordPress permalink and the post ID, and must return the URL that DubBot should use. It applies to both the displayed results and the metadata used for editor highlighting.
Highlighting isn’t working.
You may need to update the Editor Selector in the Settings. This is the CSS Selector that corresponds to the HTML element containing the WordPress editor.
Some things aren’t highlighting
Those things could be part of template content, such as a header or footer, which is usually not seen while editing page content.
Support
For any questions or support requests, please contact help@dubbot.com.
License
This plugin is licensed under the GPLv2 (or later). For more information, see the GPLv2 License.
Installation
- Download the plugin ZIP file.
- Go to your WordPress Admin Dashboard.
- Navigate to
Plugins > Add New. - Click
Upload Pluginand select the downloaded ZIP file. - Click
Install Nowand thenActivate. - Navigate to
Settings > DubBotto enter your “Embed Key.”
Reviews
There are no reviews for this plugin.
Contributors & Developers
“DubBot” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “DubBot” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.1.0
- Added WordPress Multisite support: network-wide default settings at
Network Admin > Settings > DubBot, with optional per-site overrides. - Added the
dubbot_page_urlfilter for sites whose public URLs differ from WordPress permalinks. - Fixed page URLs containing query strings or special characters not being encoded when sent to the DubBot API.
1.0.2
- Tested with WordPress 7.1.
1.0.0
- Initial release with support for displaying DubBot results in WordPress.