by Mohammad Jangda
5 (26 reviews)
Plugin Notes
Allows you to add notes to plugins.
Tested up to WP 4.2 (Current: 6.9)
v1.6
Current Version v1.6
Updated 10 years ago
Last Update on 16 Jul, 2015
Synced 11 hours ago
Last Synced on
Rank
#9,154
-9 this week
Active Installs
500+
—
No change
KW Avg Position
16
—
No change
Downloads
14.3K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(26 reviews)
Next Milestone 600
500+
600+
213
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 35 more installs to reach 600+
Rank Changes
Current
#9,154
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
26 reviews
Overall
100%
5
26
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| memo | 16 | — | Tag | 11 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.6
- Last Updated
- Jul 16, 2015
- Requires WP
- 3.5+
- Tested Up To
- 4.2
- PHP Version
- N/A
- Author
- Mohammad Jangda
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 26
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Query Monitor - The developer tools panel for WordPress
200K+ installs
#255
Header and Footer Scripts
200K+ installs
#258
Performance Lab
200K+ installs
#267
Frequently Asked Questions
Common questions about Plugin Notes
The notes are stored in the options table of the database.
There are a number of variables you can use in the notes which will automagically be replaced. Most aren't that useful as the info is provided by default for the plugin, but they are included anyway for completeness. Example use: you want a link to the WordPress Plugin repository for each plugin. Instead of manually adding each and every link, you can just add the following note to each plugin and the link will be automagically placed: Plugin: %WPURI_LINK% Available variables: %PLUGIN_PATH% : Plugin uri path on your website %WPURI% : URI of the WordPress repository of the plugin (Please note: it is not tested whether the plugin is actually registered in the WP plugin repository!) %WPURI_LINK% : A link to the above WordPress repository of the plugin Already showing for each plugin (less useful): %NAME%: Plugin Name %URI%: URI of the plugin website %AUTHOR%: Name of the plugin author %AUTHORURI%: Website of the plugin author %VERSION%: Current plugin version %DESCRIPTION%: Description of the plugin
Yes, you can use markdown. The markdown syntax conversion is done on the fly. The notes are saved to the database without conversion.
Just add the following snippet to your (child-)themes functions.php file to turn markdown parsing off: add_filter( 'plugin_notes_markdown', '__return_false' );
Please refer to markdown syntax.
Yes, you can use html in the notes. The following tags are allowed: a, br, p, b, strong, i, em, u, img, hr. The html is saved to the database with the note.
Yes, you can, though be careful as you might open up your WP install to XSS attacks. To change the allowed html tags, just add a variation of the following snippet to your (child-)themes functions.php file: add_filter( 'plugin_notes_allowed_tags', 'your_function', 10, 1 ); function your_function( $allowed_tags ) { //do something with the $allowed_tags array return $allowed_tags; }
Yes, you can. There are filters provided at three points: 1. The actual note to be displayed -> plugin_notes_note 1. The html for the note including the surrounding box -> plugin_notes_row 1. The html for the input form -> plugin_notes_form Hook into those filters to change the output before it's send to the screen. add_filter( 'plugin_notes_note', 'your_function', 10, 3 ); function your_function( $note, $plugin_data, $plugin_file ) { //do something return $output; } add_filter( 'plugin_notes_row', 'your_function', 10, 3 ); function your_function( $output, $plugin_data, $plugin_file ) { //do something return $output; } add_filter( 'plugin_notes_form', 'your_function', 10, 2 ); function your_function( $output, $plugin_safe_name ) { //do something return $output; } If you want to filter the note output before the variable replacements are made and markdown syntax is applied, set the priority for your plugin_notes_note filter to lower than 10. Example: add_filter( 'plugin_notes_note', 'your_function', 8, 3 );
The plugin is translation ready, though there is not much to translate. Use the /languages/plugin-notes.pot file to create a new .po file for your language. If you would like to offer your translation to other users, please open a pull request on GitHub.