do_action( 'after_plugin_row', string $plugin_file , array $plugin_data , string $status )
Fires after each row in the Plugins list table.
Parameters Parameters
- $plugin_file
-
(string) Path to the plugin file relative to the plugins directory.
- $plugin_data
-
(array) An array of plugin data.
- $status
-
(string) Status filter currently applied to the plugin list. Possible values are: 'all', 'active', 'inactive', 'recently_activated', 'upgrade', 'mustuse', 'dropins', 'search', 'paused', 'auto-update-enabled', 'auto-update-disabled'.
Source Source
Changelog Changelog
Version | Description |
---|---|
5.5.0 | Added 'auto-update-enabled' and 'auto-update-disabled' to possible values for $status . |
2.3.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
It seems like the
$plugin_data
array is composed like the following:Expand full source codeCollapse full source code
Just FYI. Could be more complete in this documentation page.
You also have the
after_plugin_row_{file}
hook that gives you something likeafter_plugin_row_akismet/akismet.php
for instance, it takes the exact same parameters though.