by DamChtlv
1 (0 reviews)
Plugin Tags
Add tags & filters to the plugins list to quickly & easily see what they do.
Tested up to WP 6.6 (Current: 6.9)
v1.2.4
Current Version v1.2.4
Updated 1 year ago
Last Update on 17 Jul, 2024
Synced 12 hours ago
Last Synced on
Rank
#23,051
-45 this week
Active Installs
30+
-11.8%
KW Avg Position
N/A
—
No change
Downloads
4K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 40
30+
40+
676
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 3 more installs to reach 40+
Rank Changes
Current
#23,051
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
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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.2.4
- Last Updated
- Jul 17, 2024
- Requires WP
- 3.0+
- Tested Up To
- 6.6
- PHP Version
- 5.6 or higher
- Author
- DamChtlv
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Plugin Tags
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.
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 }