Title: Plugin Notes Plus
Author: jamiebergen
Published: <strong>13 Tháng 2, 2018</strong>
Last modified: 23 Tháng 7, 2026

---

Tìm kiếm plugin

![](https://ps.w.org/plugin-notes-plus/assets/banner-772x250.png?rev=1821609)

![](https://ps.w.org/plugin-notes-plus/assets/icon.svg?rev=1821775)

# Plugin Notes Plus

 Bởi [jamiebergen](https://profiles.wordpress.org/jamiebergen/)

[Tải về](https://downloads.wordpress.org/plugin/plugin-notes-plus.1.2.10.zip)

 * [Chi tiết](https://vi.wordpress.org/plugins/plugin-notes-plus/#description)
 * [Đánh giá](https://vi.wordpress.org/plugins/plugin-notes-plus/#reviews)
 *  [Cài đặt](https://vi.wordpress.org/plugins/plugin-notes-plus/#installation)
 * [Nhà phát triển](https://vi.wordpress.org/plugins/plugin-notes-plus/#developers)

 [Hỗ trợ](https://wordpress.org/support/plugin/plugin-notes-plus/)

## Mô tả

Have you ever returned to a site that you built a while back and asked, “Why did
I install this plugin?” This plugin provides an extra column on the Plugins page
that enables you to add, edit, or delete notes about the plugins you have installed
on a particular site. These notes are intended to provide documentation regarding
why a particular plugin was installed and how or where it’s being used.

Features

 * Add as many or as few notes as you need for each plugin.
 * Edit or delete notes as desired.
 * Select an icon to go with each note to quickly convey what type of content it
   contains (e.g., info, warning, link, etc.)
 * Format notes using basic HTML tags if desired.
 * Any links included in the note will be automatically converted to `target="_blank"`
 * Notes are added and updated via Ajax, avoiding slow page reloads.
 * Notes also display on the WordPress Updates page for any plugins that need to
   be updated.
 * A filter is provided if you would like to display notes beneath the plugin description
   instead of in a separate column.
 * A filter is available to selectively hide or display plugin notes in the admin.

## Ảnh màn hình

[⌊Upon activating the plugin, you will see a new column on the Plugins page that
enables you to add, edit, or delete notes about the plugins you have installed on
a particular site.⌉⌊Upon activating the plugin, you will see a new column on the
Plugins page that enables you to add, edit, or delete notes about the plugins you
have installed on a particular site.⌉[

Upon activating the plugin, you will see a new column on the Plugins page that enables
you to add, edit, or delete notes about the plugins you have installed on a particular
site.

## Cài đặt

 1. You can either install the plugin via the Plugins directory from within your WordPress
    install, or you can upload the files manually to your server by extracting the .
    zip file and placing its contents in the /wp-content/plugins/ directory.
 2. Activate the plugin through the Plugins menu in WordPress.
 3. Add, edit, or delete notes in the Plugin Notes column on the Installed Plugins 
    page.

## Hỏi đáp

### Can I display the plugin notes beneath the plugin description instead of in a separate column?

As of version 1.2.4, you can use the filter plugin-notes-plus_note_placement to 
move notes beneath the plugin description.

Here is an example of a snippet that places plugin notes beneath the plugin description.
It can be added to your child theme’s functions.php. Without this, the note position
will default to a separate column on the plugins page.

    ```
    function pnp_change_note_placement( $note_placement ) {

        $note_placement = 'description';

        return $note_placement;

    }
    add_filter( 'plugin-notes-plus_note_placement', 'pnp_change_note_placement' );
    ```

### Can I modify which icons are available to display next to plugin notes?

Yes, you can use the filter plugin-notes-plus_icon_options to modify the set of 
icons available. The icons must be selected from [the list of available WordPress dashicons](https://developer.wordpress.org/resource/dashicons/).

Here is an example of a snippet that removes one icon and adds an additional icon
to the list of options. It can be added to your child theme’s functions.php:

    ```
    function pnp_change_icon_options( $icon_options ) {

        // Remove key option
        unset( $icon_options['dashicons-admin-network'] );

        // Add smartphone option
        $icon_options['dashicons-smartphone'] = 'Smartphone';

        return $icon_options;
    }
    add_filter( 'plugin-notes-plus_icon_options', 'pnp_change_icon_options' );
    ```

### Which HTML tags are permitted, and can that list be modified?

You can use the following HTML tags: `a`, `br`, `p`, `b`, `strong`, `i`, `em`, `
u`, `hr`.

To modify the list of available tags, use the filter plugin-notes-plus_allowed_html.
Be careful, however, to avoid allowing tags that could leave the site vulnerable
to an XSS attack.

    ```
    function pnp_change_allowed_html_tags( $allowed_tags ) {

        // Remove br from allowed tags
        unset( $allowed_tags['br'] );

        // Add img to allowed tags
        $allowed_tags['img'] = array();

        return $allowed_tags;
    }
    add_filter( 'plugin-notes-plus_allowed_html', 'pnp_change_allowed_html_tags' );
    ```

### Where is the data stored?

Plugin notes and note metadata are stored in a custom table whose name ends in `
plugin_notes_plus`. In the initial version (1.0.0), notes were stored in the options
table. Version 1.1.0 was released to migrate existing notes from the options table
into the `plugin_notes_plus` table. Upgrading to version 1.1.1 will perform a cleanup,
removing any notes from the options table.

### How does it work on multisite installs?

Each site within a multisite install maintains its own plugin notes. Additionally,
the superadmin can maintain their own plugin notes.

### Can I hide plugin notes from specific users?

As of version 1.2.6, you can use the filter plugin-notes-plus_hide_notes to show
or hide plugin notes.

Here is an example of a snippet that hides plugin notes from a specfic user. It 
can be added to your child theme’s functions.php. Without this, plugin notes are
displayed by default to all users who can view the plugins page.

    ```
    function pnp_hide_notes( $hide_notes ) {

        // logic to set $hide_notes to TRUE or FALSE

        return $hide_notes;

    }
    add_filter( 'plugin-notes-plus_hide_notes', 'pnp_hide_notes' );
    ```

## Đánh giá

![](https://secure.gravatar.com/avatar/e82fca3a46c388f62c9db211ed6cb0ecc9bc20d603ccb836143ebee54b290cf4?
s=60&d=retro&r=g)

### 󠀁[Thank you for making this plugin!!!](https://wordpress.org/support/topic/thank-you-for-making-this-plugin-4/)󠁿

 [brs76](https://profiles.wordpress.org/brs76/) 25 Tháng 8, 2026

Must have plugin for every WP user who use tons of plugins at their website/s and
forget what plugin is use for what purpose.

![](https://secure.gravatar.com/avatar/3387ab6f1f5b8ff6b067a64a2356f47b601cee73b19346c10a9e3ceccc84c745?
s=60&d=retro&r=g)

### 󠀁[Hyper intelligent, merci](https://wordpress.org/support/topic/hyper-intelligent-merci/)󠁿

 [Kathy](https://profiles.wordpress.org/kathylecocq/) 18 Tháng 8, 2025

Magnifique extension, parfaite pour se remémorer les différentes extensions qu’on
a activées.

![](https://secure.gravatar.com/avatar/f53e3c5ef9a242dee06591ed19bcf54a01d52a5da4277074c4d41e14e44ea3d6?
s=60&d=retro&r=g)

### 󠀁[Absolutely brilliant plugin. Works great as described.](https://wordpress.org/support/topic/absolutely-brilliant-plugin-works-great-as-described/)󠁿

 [khrisme](https://profiles.wordpress.org/khrisme/) 3 Tháng 2, 2025

Absolutely brilliant plugin. Works great as described.

![](https://secure.gravatar.com/avatar/99bf237fc6a13537f84344da278698861eb6b1f1119257b26fd04ce0aeb03d1c?
s=60&d=retro&r=g)

### 󠀁[Very useful](https://wordpress.org/support/topic/very-useful-3555/)󠁿

 [denizci88](https://profiles.wordpress.org/denizci88/) 7 Tháng 12, 2024

I have tested it. It is very useful. Thank you very much 🙂

![](https://secure.gravatar.com/avatar/727a48ee3c359753371399b12d74795832b4e3256390e1b383eb4c4a720c7a2c?
s=60&d=retro&r=g)

### 󠀁[Totally. Awesome. Plugin.](https://wordpress.org/support/topic/totally-awesome-plugin-6/)󠁿

 [cnyrpdbwebmaster](https://profiles.wordpress.org/cnyrpdbwebmaster/) 31 Tháng 10,
2024

After years of wanting this, I stumbled across it by accident. I’m SO glad I did!
I’d give it 10 stars if I could.

![](https://secure.gravatar.com/avatar/73a3c3410ead26dd01b7a1f53d30f86bb79dae68b33ed9ac5e4bb1e65967b870?
s=60&d=retro&r=g)

### 󠀁[Invaluable App](https://wordpress.org/support/topic/invaluable-app/)󠁿

 [johnpoz](https://profiles.wordpress.org/johnpoz/) 31 Tháng 5, 2024

Does exactly what it says. Can’t live without it.

 [ Đọc tất cả 62 đánh giá ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/)

## Người đóng góp & Lập trình viên

“Plugin Notes Plus” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

 *   [ jamiebergen ](https://profiles.wordpress.org/jamiebergen/)

“Plugin Notes Plus” đã được dịch qua 8 ngôn ngữ. Cảm ơn [những người tham gia dịch](https://translate.wordpress.org/projects/wp-plugins/plugin-notes-plus/contributors)
vì đóng góp của họ.

[Dịch “Plugin Notes Plus” sang ngôn ngữ của bạn.](https://translate.wordpress.org/projects/wp-plugins/plugin-notes-plus)

### Muốn tham gia phát triển?

[Duyệt code](https://plugins.trac.wordpress.org/browser/plugin-notes-plus/), check
out [SVN repository](https://plugins.svn.wordpress.org/plugin-notes-plus/), hoặc
theo dõi [nhật ký phát triển](https://plugins.trac.wordpress.org/log/plugin-notes-plus/)
qua [RSS](https://plugins.trac.wordpress.org/log/plugin-notes-plus/?limit=100&mode=stop_on_copy&format=rss).

## Nhật ký thay đổi

#### 1.2.10

 * Fixed: Ajax conflict with WPML version 4.7.0 and up. Thanks to @ericmuc for bringing
   this to my attention.

#### 1.2.9

 * Fixed: PHP warnings related to I18n.

#### 1.2.8

 * Fixed: Checking for user permission on ajax requests.

#### 1.2.7

 * Fixed: Cross site scripting (XSS) vulnerability related to icon rendering.

#### 1.2.6

 * Added: Option to selectively hide or display plugin notes. Thanks to @garconis
   for the suggestion.

#### 1.2.5

 * Fixed: PHP warning caused by deprecated usage of wp_localize_script. Thanks to@
   brianhenryie for finding this.

#### 1.2.4

 * Added: Option to display notes beneath plugin description. Thanks to @antipole
   for the suggestion.

#### 1.2.3

 * Added: Money icon option. Thanks to @brianhenryie.

#### 1.2.2

 * Added: Updates for RTL compatibility. Thanks to @ramiy.
 * Removed: Unnecessary po and mo translation files.

#### 1.2.1

 * Fixed: JavaScript error that sometimes happened on update-core.php if a plugin
   had no notes. Thanks to @brianhenryie for bringing this to my attention.
 * Added: Hungarian translation. Thanks to @tomek00.

#### 1.2.0

 * Added: Plugin notes now display in a read-only format on the WordPress Updates
   page (update-core.php). Thanks to @douglsmith for the suggestion.
 * Fixed: Removed unnecessary multisite hook. Thanks to @foomagoo for pointing this
   out.

#### 1.1.2

 * Fixed: Bug that prevented user from adding or updating notes after an ajax response.
   Thanks to @anticosti for helping to identify this bug.
 * Added: Spinning icon to indicate that a note is in the process of being deleted.

#### 1.1.1

 * Added: Cleanup routine to remove notes from the options table. (If upgrading 
   from 1.0.0, notes will first be migrated into their own table.)

#### 1.1.0

 * Fixed: Bug that caused plugin notes to disappear on Windows servers due to discrepancies
   in the plugin file path related to forward vs. backslash. This update will recover
   missing notes. Thanks to @gwalsh66 for helping to identify this bug.
 * Changed: Plugin notes will now be stored in a custom table called `$wpdb->prefix.'
   plugin_notes_plus'`
 * Added: Migration routine to move notes from the options table into their own 
   table if upgrading from version 1.0.0
 * Added: Entry in the options table called ‘plugin_notes_plus_db_version’ to track
   the custom database table version

#### 1.0.0

 * Initial release

## Meta

 *  Phiên bản **1.2.10**
 *  Cập nhật lần cuối **1 tháng trước**
 *  Số lượt cài đặt **9.000+**
 *  Phiên bản WordPress ** 6.2 hoặc cao hơn **
 *  Đã kiểm tra lên đến **7.0.4**
 *  Phiên bản PHP ** 5.6 hoặc cao hơn **
 *  Ngôn ngữ
 * [Dutch](https://nl.wordpress.org/plugins/plugin-notes-plus/), [English (US)](https://wordpress.org/plugins/plugin-notes-plus/),
   [German](https://de.wordpress.org/plugins/plugin-notes-plus/), [Hebrew](https://he.wordpress.org/plugins/plugin-notes-plus/),
   [Japanese](https://ja.wordpress.org/plugins/plugin-notes-plus/), [Portuguese (Portugal)](https://pt.wordpress.org/plugins/plugin-notes-plus/),
   [Russian](https://ru.wordpress.org/plugins/plugin-notes-plus/), [Spanish (Spain)](https://es.wordpress.org/plugins/plugin-notes-plus/),
   và [Swedish](https://sv.wordpress.org/plugins/plugin-notes-plus/).
 *  [Dịch sang ngôn ngữ của bạn](https://translate.wordpress.org/projects/wp-plugins/plugin-notes-plus)
 * Thẻ
 * [memo](https://vi.wordpress.org/plugins/tags/memo/)[plugin notes](https://vi.wordpress.org/plugins/tags/plugin-notes/)
   [plugins](https://vi.wordpress.org/plugins/tags/plugins/)
 *  [Nâng cao](https://vi.wordpress.org/plugins/plugin-notes-plus/advanced/)

## Đánh giá

 5 trên 5 sao.

 *  [  62 5-star reviews     ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/#new-post)

[Xem tất cả đánh giá](https://wordpress.org/support/plugin/plugin-notes-plus/reviews/)

## Những người đóng góp

 *   [ jamiebergen ](https://profiles.wordpress.org/jamiebergen/)

## Hỗ trợ

Các lỗi đã xử lý trong vòng hai tháng gần đây:

     0 trên 1

 [Xem diễn đàn hỗ trợ](https://wordpress.org/support/plugin/plugin-notes-plus/)

## Ủng hộ

Bạn có muốn hỗ trợ vào sự phát triển của plugin này?

 [ Ủng hộ plugin này ](https://www.paypal.com/donate?business=WXSWW7YP6NE5Y&no_recurring=0&currency_code=USD)