lighthouseuk/wp-recite-me

Unofficial recite me WordPress plugin

Installs: 382

Dependents: 0

Suggesters: 0

Security: 0

Type:wordpress-plugin

v1.1.2 2025-06-27 13:31 UTC

README

Latest Stable Version

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.