Title: Plugin Tags
Author: damchtlv
Published: <strong>Ọ̀wàrà 17, 2021</strong>
Last modified: Agẹmọ  17, 2024

---

Ṣàwárí àwọn plugin

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

Plugin yìí **kò tíì ṣe àyẹ̀wò pẹ̀lú àwọn ìtújáde mẹ́ta pàtàkì tó kẹ́yìn ti WordPress**.
Ó lè jẹ́ pé a kò tọ́jú tàbí ṣe àtìlẹ́yìn fún un mọ́, ó sì lè ní àwọn ọ̀ràn ìbámu
nígbà tí a bá lò ó pẹ̀lú àwọn ẹ̀yà WordPress tuntun.

![](https://ps.w.org/plugin-tags/assets/icon-256x256.gif?rev=2615435)

# Plugin Tags

 Láti ọwọ́ [damchtlv](https://profiles.wordpress.org/damchtlv/)

[Ṣe ìgbàsílẹ̀](https://downloads.wordpress.org/plugin/plugin-tags.1.2.4.zip)

 * [Àwọn àlàyé](https://yor.wordpress.org/plugins/plugin-tags/#description)
 * [Àwọn àgbéyẹ̀wò](https://yor.wordpress.org/plugins/plugin-tags/#reviews)
 *  [Ìgbéwọlẹ̀](https://yor.wordpress.org/plugins/plugin-tags/#installation)
 * [Ìdàgbàsókè](https://yor.wordpress.org/plugins/plugin-tags/#developers)

 [Ìrànlọ́wọ́](https://wordpress.org/support/plugin/plugin-tags/)

## Àpèjúwe

Add **tags** & **filters** to the **Plugins list** to quickly & easily see what 
they do. 🏷

**Few examples** of use:
 Ìtumọ̀ Yorùbá: – **Utilities**: _Admin, SEO, Cache, Pagebuilder…_
Ìtumọ̀ Yorùbá: – **Project version**: _v1.0, v1.1…_ Ìtumọ̀ Yorùbá: – **Notes / reminders**:
_Unstable, Waiting for hotfix…_

### 🔨 How to use

Want to **change a tag text**? ✒
 Ìtumọ̀ Yorùbá: – Click on the text and write directly!

Want to **change a tag color**? 🌈
 Ìtumọ̀ Yorùbá: – Hover the tag and click on 
the 🖌 icon

Want to **filter your plugins** based on **their tags**? 🔍
 Ìtumọ̀ Yorùbá: – Hover
the tag and click on the 📌 icon Ìtumọ̀ Yorùbá: – _(itÌtumọ̀ Yorùbá: ’s going to
reload the page with the filter added above plugins, click on it again to remove
it)._

### ⭐ Features

**Colors** 🎨
 _(Based on **user preferences** to avoid **“rainbow-effect”**)_

**Filters / Views** 📌
 _(To **filter plugins** which have a similar tag)_

**Fast / Lightweight** 🚀
 _(When you change a tag text / color, itÌtumọ̀ Yorùbá:’
s **instantly saved** using ajax technology)_

## Àwọn àwòrán ìbòjú

[⌊Display "no tag" as default tag state.⌉⌊Display "no tag" as default tag state.⌉[

Display “no tag” as default tag state.

[⌊When hovering the tag, you can change the color by clicking the 🖌.⌉⌊When hovering
the tag, you can change the color by clicking the 🖌.⌉[

When hovering the tag, you can change the color by clicking the 🖌.

[⌊Change tag text by clicking on it and write, clicking on 📌 add a filter view.⌉⌊
Change tag text by clicking on it and write, clicking on 📌 add a filter view.⌉[

Change tag text by clicking on it and write, clicking on 📌 add a filter view.

[⌊Filter view link is added above plugins (ex: "To delete").⌉⌊Filter view link is
added above plugins (ex: "To delete").⌉[

Filter view link is added above plugins (ex: “To delete”).

## Ìgbéwọlẹ̀

 1. Upload the `plugin-tags` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the **Plugins** menu in WordPress

## FAQ

### Does this plugin have hooks (filters) ?

**Yes, there is one filter**: `ptags/option` which contains **all the data saved
by the plugin** in an array which is stored **in a single option**.

You can use the code below to preset your favorite configuration _(used “**Hello
Dolly**” plugin as example)_:

    ```
    // Change plugin tags config
    add_filter( 'ptags/option', 'my_ptags_option' );
    function my_ptags_option( $option ) {

        // Get current plugins & tags data
        $plugins = isset( $option['plugins'] ) ? $option['plugins'] : array();
        $tags    = isset( $option['tags'] ) ? $option['tags'] : array();

        // Edit plugins data
        $plugins = wp_parse_args(
            $plugins,
            array(

                // Plugin slug
                'hello-dolly' => array(
                    'tag'   => __( 'To delete' ), // Tag text displayed next to the plugin version
                    'color' => 1, // User preference schematic colors, from 1 to 4+
                ),

                // ... add more by duplicating lines above

            )
        );

        // Edit tags data
        $tags = wp_parse_args(
            $tags,
            array(

                // Filter text (should be same tag text as above)
                'To delete' => array(
                    'view' => 1, // Boolean setting to display filter above plugins list
                ),

                // ... add more by duplicating lines above

            )
        );

        // We merge it with current data
        $new_option = wp_parse_args( array( 'plugins' => $plugins, 'tags' => $tags ), $option );

        // Return the new option
        return $new_option;
    }
    ```

💡 _If you have no idea where to put this code, add it at the end of your `functions.
php` which is in your theme folder._

### Can i customize the look of tags?

**Yes you can** and itÌtumọ̀ Yorùbá: ’s fairly simple because this plugin CSS stylesheet
use **CSS variables**.
 Just **add the code below** in a CSS stylesheet loaded in
the admin & **customize values** as you pleased:

    ```
    :root {
        --plugin-tag-color: #fff; // Tag text color
        --plugin-tag-pad: 0 7px; // Tag padding
        --plugin-tag-rad: 3px; // Tag border radius
        --plugin-tag-fs: .75rem; // Tag font-size
        --plugin-tag-bg: #bbb; // Tag background color
    }
    ```

## Àwọn àgbéyẹ̀wò

Kò sí àwọn àgbéyẹ̀wò fún plugin yìí.

## Àwọn Olùkópa & Olùgbéejáde

“Plugin Tags” jẹ́ ètò ìṣàmúlò orísun ṣíṣí sílẹ̀. Àwọn ènìyàn wọ̀nyí ti ṣe ìkópa 
sí plugin yìí.

Àwọn Olùkópa

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

[Túmọ̀ “Plugin Tags” sí èdè rẹ.](https://translate.wordpress.org/projects/wp-plugins/plugin-tags)

### Ṣe o nífẹ̀ẹ́ sí ìdàgbàsókè?

[Ṣàwárí koodu](https://plugins.trac.wordpress.org/browser/plugin-tags/), ṣàyẹ̀wò
[ibi ìpamọ́ SVN](https://plugins.svn.wordpress.org/plugin-tags/), tàbí ṣe àgbékalẹ̀
sí [àkọsílẹ̀ ìdàgbàsókè](https://plugins.trac.wordpress.org/log/plugin-tags/) nípasẹ̀
[RSS](https://plugins.trac.wordpress.org/log/plugin-tags/?limit=100&mode=stop_on_copy&format=rss).

## Àkọsílẹ̀ àwọn àyípadà

#### 1.2

Updated default style to match WP UI

#### 1.1

Updated readme

#### 1.0

 * Initial release

## Àkójọpọ̀ Meta

 *  Ẹ̀yà **1.2.4**
 *  Ìgbàgbọ́hùn tó kẹ́yìn **ọdún 2 sẹ́yìn**
 *  Àwọn ìgbéwọlẹ̀ tó ṣiṣẹ́ **30+**
 *  Ẹ̀yà WordPress ** 3.0 tàbí ju bẹ́ẹ̀ lọ **
 *  Dánwò dé **6.6.5**
 *  Ẹ̀yà PHP ** 5.6 tàbí ju bẹ́ẹ̀ lọ **
 *  Èdè
 * [English (US)](https://wordpress.org/plugins/plugin-tags/)
 * Àwọn àmì
 * [plugin management](https://yor.wordpress.org/plugins/tags/plugin-management/)
   [plugin notes](https://yor.wordpress.org/plugins/tags/plugin-notes/)
 *  [Ìwòye Tó Péye](https://yor.wordpress.org/plugins/plugin-tags/advanced/)

## Àwọn ìbò

Kò sí ìwádìí tí a tíì fi ránṣẹ́.

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

[See all reviews](https://wordpress.org/support/plugin/plugin-tags/reviews/)

## Àwọn Olùkópa

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

## Ìrànlọ́wọ́

Nǹkan wà tí o fẹ́ sọ? Ṣé o nílò ìrànlọ́wọ́?

 [Wo àpéjọ ìrànlọ́wọ́](https://wordpress.org/support/plugin/plugin-tags/)