lighthouseuk / wp-recite-me
Unofficial recite me WordPress plugin
v1.1.2
2025-06-27 13:31 UTC
Requires
- composer/installers: ~2.3
Requires (Dev)
README
A simple plugin to embed Recite Me snippets.
Installing
Set RECITE_ME_API_KEY
in your wp-config.php file.
Optionally set RECITE_ME_DISABLED_BUTTONS
to an array of buttons to disable them.
define( 'RECITE_ME_DISABLED_BUTTONS', array( 'translate' ) );
This plugin can be installed using composer
composer require lighthouseuk/wp-recite-me
Blacklist URLs from being translated
You can prevent ReciteMe from offering translation on specific pages by defining a blacklist of URL pathnames in your wp-config.php
:
define('RECITE_ME_BLACKLISTED_URLS', array(
'/legal/',
'/accessibility/',
'/disclaimer/',
'/privacy/',
'/terms/',
'/site-map/',
'/gdpr/',
'/cookie-policy/',
));
- Use only the path part (e.g.
/privacy/
), not the full URL. - The plugin will automatically prevent translation on any page whose path matches an entry in this array.