Viström Media Library Categories
by Viström 0 (0 reviews)

Viström Media Library Categories

Categorize and filter your media library by categories, added support for bulk editing in both list-view and the grid-view.

Viström Media Library Categories ranks #24,384 among WordPress.org plugins with 30+ active installations, is #2,359 of 6,355 in the Media category, and was last updated Feb 9, 2024. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.3.12 (Current: 7.1.2)
v1.2.0 Current Version v1.2.0
Updated 2 years ago Last Update on 09 Feb, 2024
Refreshed 7 hours ago Last Refreshed on
#2,359 of 6,355 in Media Top 50% by installs No update in over a year
View on WordPress.org
Rank
#24,384
No change
Active Installs
30+
+7.1%
KW Avg Position
N/A
No change
Downloads
2.6K
+3 today
Support Resolved
0%
No change
Rating
0%
Review 0 out of 5
0 (0 reviews)

Next Milestone 40

Total Progress 40%
30+ 40+
1,868
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
Upgrade to Pro
Need 6 more installs to reach 40+

Rank Changes

24,268 24,481 24,694 24,906 25,119 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
24,213 24,544 24,875 25,206 25,537 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #24,384
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

0.0
0 reviews
Overall 0%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about Viström Media Library Categories

Using the filter below, you can prevent taxonomies from being rendered as a result of this plugin. add_filter('vistrom_media_unsupported_taxonomy_names', function () { return [ 'names-to-blacklist' // Your taxonomy name ]; });
Using the actions below it's possible to add your own custom fields to each respective bulk edit view. The views are located in the following folder /views/admin/media/ // Grid modal add_action('vistrom_media_bulk_edit_grid_start', 'render_my_field'); add_action('vistrom_media_bulk_edit_grid_end', 'render_my_field'); // List view add_action('vistrom_media_bulk_edit_list_start', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_left_column_start', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_left_column_end', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_center_column_start', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_center_column_end', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_right_column_start', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_right_column_end', 'render_my_field'); add_action('vistrom_media_bulk_edit_list_end', 'render_my_field'); function render_my_field() { echo "<input type='text' name='custom_field' value='' placeholder='My field'>"; }
To save the fields added to the bulk edit views, you can use the following actions. All supported taxonomies are saved automatically. add_action('vistrom_media_before_bulk_update', 'save_my_field', 10, 2); add_action('vistrom_media_after_bulk_update', 'save_my_field', 10, 2); function save_my_field($postIds, $postData) { foreach ($postIds as $id) { update_post_meta($id, 'custom_field', $postData['custom_field']); } }

Sign In / Register

You need to sign in or register to use this feature.