after_plugin_row_meta
Action HookDescription
Fires after plugin row meta.Hook Information
File Location |
wp-admin/includes/class-wp-plugins-list-table.php
View on GitHub
|
Hook Type | Action |
Line Number | 1281 |
Hook Parameters
Type | Name | Description |
---|---|---|
string
|
$plugin_file
|
Refer to {@see 'plugin_row_meta'} filter. |
array
|
$plugin_data
|
Refer to {@see 'plugin_row_meta'} filter. |
Usage Examples
Basic Usage
<?php
// Hook into after_plugin_row_meta
add_action('after_plugin_row_meta', 'my_custom_function', 10, 2);
function my_custom_function($plugin_file, $plugin_data) {
// Your custom code here
}
Source Code Context
wp-admin/includes/class-wp-plugins-list-table.php:1281
- How this hook is used in WordPress core
<?php
1276 * @since 6.5.0
1277 *
1278 * @param string $plugin_file Refer to {@see 'plugin_row_meta'} filter.
1279 * @param array $plugin_data Refer to {@see 'plugin_row_meta'} filter.
1280 */
1281 do_action( 'after_plugin_row_meta', $plugin_file, $plugin_data );
1282
1283 if ( $paused ) {
1284 $notice_text = __( 'This plugin failed to load properly and is paused during recovery mode.' );
1285
1286 printf( '<p><span class="dashicons dashicons-warning"></span> <strong>%s</strong></p>', $notice_text );
PHP Documentation
<?php
/**
* Fires after plugin row meta.
*
* @since 6.5.0
*
* @param string $plugin_file Refer to {@see 'plugin_row_meta'} filter.
* @param array $plugin_data Refer to {@see 'plugin_row_meta'} filter.
*/
Quick Info
- Hook Type: Action
- Parameters: 2
- File: wp-admin/includes/class-wp-plugins-list-table.php
Related Hooks
Related hooks will be displayed here in future updates.