duckdev / wp-review-notice
Simple library class to gently ask for a wp.org plugin review after a few days of plugin usage.
v1.0.2
2022-01-29 06:59 UTC
Requires
- php: >=5.6
README
WP Review Notice
Simple library class to gently ask for a wp.org plugin review after a few days of plugin usage.
Installation
WP Review Notice can be installed using composer:
$ composer require duckdev/wp-review-notice
Usage 📖
Initialize
Initialize one notice per plugin.
// Setup notice. $notice = \DuckDev\Reviews\Notice::get( 'my-plugin', // Plugin slug on wp.org (eg: hello-dolly). 'My Plugin', // Plugin name (eg: Hello Dolly). array( 'days' => 7, // default: 7 days. 'message' => 'My custom message asking for review', // If you want to use different review notice message. 'action_labels' => array( 'review' => 'Please review me', // Change review link label. 'later' => 'I will review later', // Change review extension link. 'dismiss' => 'Nope', // No review label :(. ), ) ); // Render notice. $notice->render();
Options
You can customize the notice behaviour using options. All these options are optional.
Credits
Author - Joel James