wppaste
WordPress

do_action( 'after_plugin_row', string $plugin_file, array $plugin_data, string $status )

Since
2.3.0, 5.5.0
Fires after each row in the Plugins list table.

Compatibility

WordPress
since 5.5.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$plugin_filestring
Path to the plugin file relative to the plugins directory.
$plugin_dataarray
An array of plugin data. See get_plugin_data() and the 'plugin_row_meta' filter for the list of possible values.
$statusstring
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'.

Where this hook fires · 1

  • wp-admin/includes/class-wp-plugins-list-table.php:1491WP_Plugins_List_Table::single_row()

Source code

		 *                            of possible values.		 * @param string $status      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'.		 */		do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status ); 		/**		 * Fires after each specific row in the Plugins list table.		 *		 * The dynamic portion of the hook name, `$plugin_file`, refers to the path		 * to the plugin file, relative to the plugins directory.

Changelog

Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

5.5.0
Added 'auto-update-enabled' and 'auto-update-disabled' to possible values for $status.from the docblock
2.3.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.