Title: Plugin Tags
Author: damchtlv
Published: <strong>अक्टोबर 17, 2021</strong>
Last modified: जुलाई 17, 2024

---

प्लगिनहरू खोज्नुहोस्

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

यो प्लगिन **वर्डप्रेसका ३ प्रमुख नवीनतम रिलीजहरूसँग परीक्षण गरिएको छैन**। यो अब 
सम्भवतः व्यवस्थित वा समर्थन नभएको हुन सक्छ र वर्डप्रेसका नयाँ संस्करणहरूमा प्रयोग
गर्दा अनुकूलता सम्बन्धी समस्या हुन सक्छ।

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

# Plugin Tags

 [damchtlv](https://profiles.wordpress.org/damchtlv/) द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/plugin-tags.1.2.4.zip)

 * [विवरण](https://ne.wordpress.org/plugins/plugin-tags/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/plugin-tags/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/plugin-tags/#installation)
 * [विकास](https://ne.wordpress.org/plugins/plugin-tags/#developers)

 [सहायता](https://wordpress.org/support/plugin/plugin-tags/)

## विवरण

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

**Few examples** of use:
 – **Utilities**: _Admin, SEO, Cache, Pagebuilder…_ – **
Project version**: _v1.0, v1.1…_ – **Notes / reminders**: _Unstable, Waiting for
hotfix…_

### 🔨 How to use

Want to **change a tag text**? ✒
 – Click on the text and write directly!

Want to **change a tag color**? 🌈
 – Hover the tag and click on the 🖌 icon

Want to **filter your plugins** based on **their tags**? 🔍
 – Hover the tag and
click on the 📌 icon – _(it’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’s **instantly
saved** using ajax technology)_

## स्क्रिनसटहरू

[⌊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”).

## स्थापना

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

## प्रश्नोत्तर

### 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’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
    }
    ```

## समीक्षाहरू

यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।

## योगदानकर्ता र डेभलपरहरू

“Plugin Tags” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका
छन्।

योगदानकर्ताहरू

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

[“Plugin Tags” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्](https://translate.wordpress.org/projects/wp-plugins/plugin-tags)

### विकासमा रुचि छ?

[आरएसएस](https://plugins.trac.wordpress.org/log/plugin-tags/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/plugin-tags/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/plugin-tags/) हेर्नुहोस्, वा
[विकास लग](https://plugins.trac.wordpress.org/log/plugin-tags/) को सदस्यता लिनुहोस्।

## चेन्जलग

#### 1.2

Updated default style to match WP UI

#### 1.1

Updated readme

#### 1.0

 * Initial release

## मेटा

 *  संस्करण **1.2.4**
 *  पछिल्लो अपडेट **2 वर्ष अघि**
 *  सक्रिय स्थापना **30+**
 *  वर्डप्रेस संस्करण ** 3.0 वा उच्च **
 *  जाँच गरिएको **6.6.5**
 *  PHP संस्करण ** 5.6 वा उच्च **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/plugin-tags/)
 * ट्यागहरू
 * [plugin management](https://ne.wordpress.org/plugins/tags/plugin-management/)
   [plugin notes](https://ne.wordpress.org/plugins/tags/plugin-notes/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/plugin-tags/advanced/)

## रेटिङ्गहरू

अहिलेसम्म कुनै समीक्षा पेस गरिएको छैन।

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

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

## योगदानकर्ताहरू

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

## सहायता

केही भन्नु छ? सहयोग चाहियो?

 [सहायता फोरम हेर्नुहोस्](https://wordpress.org/support/plugin/plugin-tags/)