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)

हे प्लगइन **WordPress च्या शेवटच्या 3 महत्त्वाच्या प्रमुख पुनर्वितरणांच्या साथी 
चाचणी झालेले नाही**. हे येथे वापरल्यास सामर्थ्य देणार नाही किंवा त्या आधारित असु
शकते आणि WordPress च्या अधिक अद्ययावत आवृत्तींसह वापरताना संगतता समस्यांची शक्यता
आहे.

![](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://mr.wordpress.org/plugins/plugin-tags/#description)
 * [पुनरावलोकने](https://mr.wordpress.org/plugins/plugin-tags/#reviews)
 *  [इंस्टॉलेशन](https://mr.wordpress.org/plugins/plugin-tags/#installation)
 * [डेव्हलोपमेंट](https://mr.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/browser/plugin-tags/), [SVN संग्रहालय](https://plugins.svn.wordpress.org/plugin-tags/)
तपासा, किंवा [विकास लॉग](https://plugins.trac.wordpress.org/log/plugin-tags/) च्या
[RSS](https://plugins.trac.wordpress.org/log/plugin-tags/?limit=100&mode=stop_on_copy&format=rss)
द्वारे सदस्यता घ्या.

## बदलांची यादी

#### 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.7**
 *  PHP आवृत्ती ** 5.6 किंवा मोठा **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/plugin-tags/)
 * टॅग्ज:
 * [plugin management](https://mr.wordpress.org/plugins/tags/plugin-management/)
   [plugin notes](https://mr.wordpress.org/plugins/tags/plugin-notes/)
 *  [प्रगत दृश्य](https://mr.wordpress.org/plugins/plugin-tags/advanced/)

## मूल्यांकन

अजून कोणतीही पुनरावलोकने सबमिट केलेली नाहीत.

[आपला अभिप्राय](https://wordpress.org/support/plugin/plugin-tags/reviews/#new-post)

[सर्व पुनरावलोकने पहा](https://wordpress.org/support/plugin/plugin-tags/reviews/)

## योगदानकर्ते

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

## समर्थन

काहीतरी सांगायचं आहे का? मदतीची आवश्यकता आहे का?

 [समर्थन फोरम पहा](https://wordpress.org/support/plugin/plugin-tags/)