PHPackages                             varunsridharan/wp-review-me - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. varunsridharan/wp-review-me

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

varunsridharan/wp-review-me
===========================

This library provides developers to ask end user to review their product (theme / plugin)

1.6(5y ago)7631[1 PRs](https://github.com/varunsridharan/wp-review-me/pulls)GPL-3.0-or-laterPHP

Since Dec 17Pushed 5y ago1 watchersCompare

[ Source](https://github.com/varunsridharan/wp-review-me)[ Packagist](https://packagist.org/packages/varunsridharan/wp-review-me)[ Fund](https://paypal.me/varunsridharan23)[ Fund](https://www.buymeacoffee.com/varunsridharan)[ RSS](/packages/varunsridharan-wp-review-me/feed)WikiDiscussions main Synced 2mo ago

READMEChangelog (8)DependenciesVersions (10)Used By (0)

WordPress Review Me Library
===========================

[](#wordpress-review-me-library)

This library provides developers to ask end user to review their product (theme / plugin)

[![Latest Stable Version](https://camo.githubusercontent.com/3708c7e7e49bddeb439fb7d2b068098c4be28a9740a929a1be82a1003c1b485d/68747470733a2f2f706f7365722e707567782e6f72672f766172756e73726964686172616e2f77702d7265766965772d6d652f76657273696f6e)](https://packagist.org/packages/varunsridharan/wp-review-me)[![Total Downloads](https://camo.githubusercontent.com/27b02363ad81791fd22cc2c87a2e1db1c5cb0bbd02e61070491bcea2fd547264/68747470733a2f2f706f7365722e707567782e6f72672f766172756e73726964686172616e2f77702d7265766965772d6d652f646f776e6c6f616473)](https://packagist.org/packages/varunsridharan/wp-review-me)[![Latest Unstable Version](https://camo.githubusercontent.com/f6d9cb6fc1662e3506ba8e93602f595471fae16d79c2fb5243b3c547e282eea7/68747470733a2f2f706f7365722e707567782e6f72672f766172756e73726964686172616e2f77702d7265766965772d6d652f762f756e737461626c65)](//packagist.org/packages/varunsridharan/wp-review-me)[![License](https://camo.githubusercontent.com/8cbe58d8fc559a458d1ae3b631cd1f92ad1d75147daae8096e5be1c105cebbe3/68747470733a2f2f706f7365722e707567782e6f72672f766172756e73726964686172616e2f77702d7265766965772d6d652f6c6963656e7365)](https://packagist.org/packages/varunsridharan/wp-review-me)[![composer.lock available](https://camo.githubusercontent.com/f751272efe38aff3959b5ff2ed58624bc0132c683b144eaffd57d9e90178cf92/68747470733a2f2f706f7365722e707567782e6f72672f766172756e73726964686172616e2f77702d7265766965772d6d652f636f6d706f7365726c6f636b)](https://packagist.org/packages/varunsridharan/wp-review-me)

Installation
------------

[](#installation)

The preferred way to install this extension is through [Composer](http://getcomposer.org/download/).

To install **WP\_Review\_Me library**, simply:

```
$ composer require Varunsridharan/WP_Review_Me

```

The previous command will only install the necessary files, if you prefer to **download the entire source code** you can use:

```
$ composer require Varunsridharan/WP_Review_Me --prefer-source

```

You can also **clone the complete repository** with Git:

```
$ git clone https://github.com/varunsridharan/wp-review-me.git

```

Or **install it manually**:

[Download WP\_Review\_Me.php](https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/class-wp-review-me.php):

```
$ wget https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/class-wp-review-me.php

```

Options
-------

[](#options)

OptionNotes`days_after`Value should be in numbers`slug`Plugin Slug (Required)`site`Supported Sites : `wordpress` / `themeforest` / `codecanyon``item_id`Item ID required if site is set-to `themeforest` / `codecanyon``type`Set `plugin` or `theme` if site is set-to **wordpress**`rating`Set Int Val if site is set-to **wordpress**`message`Custom Message To Show In Admin`link_label`Review Button Label`review_link`You can override auto link generation by providing a link here`notice_callback`If you are using any admin notice handler / custom Library then you can provide a function to call when notice should be shownUsage
-----

[](#usage)

#### Plugin / Theme From Wordpress.org

[](#plugin--theme-from-wordpressorg)

```
$review_instance = new Varunsridharan\WordPress\Review_Me(array(
    'days_after' => 2,
    'slug' => 'your-plugin',
    'type' => 'plugin', # Use theme if you are using it in a theme
    'site' => 'wordpress',
    'rating' => 3 # review link will have a default count of rating 3 which sets rating to 3 in review form
));
```

#### Plugin From Codecanyon.net

[](#plugin-from-codecanyonnet)

```
$review_instance = new Varunsridharan\WordPress\Review_Me(array(
    'days_after' => 2,
    'slug' => 'your-plugin',
    'site' => 'codecanyon',
    'item_id' => 'xxxxxxxx'
));
```

#### Theme From themeforest.net

[](#theme-from-themeforestnet)

```
$review_instance = new Varunsridharan\WordPress\Review_Me(array(
    'days_after' => 2,
    'slug' => 'your-plugin',
    'site' => 'themeforest',
    'item_id' => 'xxxxxxxx'
));
```

#### Custom Notice Callback

[](#custom-notice-callback)

```
/**
 * $review_me is a instance of VS_WP_Review_Me Class
 */
function your_plugin_review_notice_add($review_me){
    // use your custom notice handle to add / display the notice
}

$review_instance = new Varunsridharan\WordPress\Review_Me(array(
    'days_after' => 2,
    'slug' => 'your-plugin',
    'type' => 'plugin', # Use theme if you are using it in a theme
    'site' => 'wordpress',
    'notice_callback' => 'your_plugin_review_notice_add'
));
```

Sample Output
-------------

[](#sample-output)

[![View 1](https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/screenshot-1.jpg)](https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/screenshot-1.jpg)

[![View 2](https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/screenshot-2.jpg)](https://raw.githubusercontent.com/varunsridharan/wp-review-me/master/screenshot-2.jpg)

---

📝 Changelog
-----------

[](#-changelog)

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[Checkout CHANGELOG.md](https://github.com/varunsridharan/wp-review-me/blob/main/CHANGELOG.md)

🤝 Contributing
--------------

[](#-contributing)

If you would like to help, please take a look at the list of [issues](https://github.com/varunsridharan/wp-review-me/issues/).

📜 License &amp; Conduct
-----------------------

[](#--license--conduct)

- [**GNU General Public License v3.0**](https://github.com/varunsridharan/wp-review-me/blob/main/LICENSE) © [Varun Sridharan](website)
- [Code of Conduct](https://github.com/varunsridharan/.github/blob/main/CODE_OF_CONDUCT.md)

📣 Feedback
----------

[](#-feedback)

- ⭐ This repository if this project helped you! 😉
- Create An [🔧 Issue](https://github.com/varunsridharan/wp-review-me/issues/) if you need help / found a bug

💰 Sponsor
---------

[](#-sponsor)

[I](https://sva.onl/twitter/) fell in love with open-source in 2013 and there has been no looking back since! You can read more about me [here](https://sva.onl/website/). If you, or your company, use any of my projects or like what I’m doing, kindly consider backing me. I'm in this for the long run.

- ☕ How about we get to know each other over coffee? Buy me a cup for just [**$9.99**](https://sva.onl/buymeacoffee)
- ☕️☕️ How about buying me just 2 cups of coffee each month? You can do that for as little as [**$9.99**](https://sva.onl/buymeacoffee)
- 🔰 We love bettering open-source projects. Support 1-hour of open-source maintenance for [**$24.99 one-time?**](https://sva.onl/paypal)
- 🚀 Love open-source tools? Me too! How about supporting one hour of open-source development for just [**$49.99 one-time ?**](https://sva.onl/paypal)

Connect &amp; Say 👋
-------------------

[](#connect--say-)

- **Follow** me on [👨‍💻 Github](https://sva.onl/github/) and stay updated on free and open-source software
- **Follow** me on [🐦 Twitter](https://sva.onl/twitter/) to get updates on my latest open source projects
- **Message** me on [📠 Telegram](https://sva.onl/telegram/)
- **Follow** my pet on [Instagram](https://www.instagram.com/sofythelabrador/) for some *dog-tastic* updates!

---

*Built With ♥ By [Varun Sridharan](https://sva.onl/twitter) [ ![](https://camo.githubusercontent.com/ac180da7a81f72a639abce09c4827e7bacfdd3b82586b657387a7f84430c7b7f/68747470733a2f2f63646e2e73766172756e2e6465762f666c61672d696e6469612e6a7067)](https://en.wikipedia.org/wiki/India)*

 [![](https://camo.githubusercontent.com/51991d58f40dac784a0c08b9c5c16c66c59ef5bdf083e3d49e4f617ef98e03ee/68747470733a2f2f63646e2e73766172756e2e6465762f636f64656973706f657472792e706e67)](https://camo.githubusercontent.com/51991d58f40dac784a0c08b9c5c16c66c59ef5bdf083e3d49e4f617ef98e03ee/68747470733a2f2f63646e2e73766172756e2e6465762f636f64656973706f657472792e706e67)

---

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 95.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~120 days

Recently: every ~210 days

Total

8

Last Release

1858d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/522dc9d037e4b0517ee9b76cd63d75a6331b0e578afa9b27fee84b02863ace80?d=identicon)[varunsridharan](/maintainers/varunsridharan)

---

Top Contributors

[![varunsridharan](https://avatars.githubusercontent.com/u/1884287?v=4)](https://github.com/varunsridharan "varunsridharan (22 commits)")[![ImgBotApp](https://avatars.githubusercontent.com/u/31427850?v=4)](https://github.com/ImgBotApp "ImgBotApp (1 commits)")

---

Tags

codecanyonenvatoenvato-marketenvato-market-authorsreviewreview-toolsreviewsthemeforestthemeforest-wordpress-themesvsp-libswordpresswordpress-librarywordpress-php-librarywordpress-pluginwordpress-plugin-librarywordpress-reviewwordpress-themewordpress-theme-librarywordpress-toolwp-librarywordpresswordpress pluginreviewwordpress-themeenvatothemeforestcodecanyonenvato markettemplatemonsterpaid themeswordpress reviewtheme reviewplugin review

### Embed Badge

![Health badge](/badges/varunsridharan-wp-review-me/health.svg)

```
[![Health](https://phpackages.com/badges/varunsridharan-wp-review-me/health.svg)](https://phpackages.com/packages/varunsridharan-wp-review-me)
```

###  Alternatives

[freemius/wordpress-sdk

Freemius WordPress SDK

303101.4k4](/packages/freemius-wordpress-sdk)[szepeviktor/composer-envato

Composer plugin for Envato

3715.2k1](/packages/szepeviktor-composer-envato)[rilwis/meta-box

The most powerful &amp; comprehensive plugin to create, manage, show and connect dynamic data with forms and custom fields effortlessly on WordPress.

1.2k1.8k1](/packages/rilwis-meta-box)[varunsridharan/wp-dependencies

Provides Function To Check if a plugin is active/inactive &amp; function to compare versions.

1032.5k1](/packages/varunsridharan-wp-dependencies)[justcoded/wordpress-theme-boilerplate

WordPress theme boilerplate with better code structure and OOP support.

563.9k1](/packages/justcoded-wordpress-theme-boilerplate)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
