Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: after_plugin_row_meta

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1268
1269                          /**
1270                           * Fires after plugin row meta.
1271                           *
1272                           * @since 6.5.0
1273                           *
1274                           * @param string $plugin_file Refer to {@see 'plugin_row_meta'} filter.
1275                           * @param array  $plugin_data Refer to {@see 'plugin_row_meta'} filter.
1276                           */
1277                          do_action( 'after_plugin_row_meta', $plugin_file, $plugin_data );
1278
1279                          if ( $paused ) {
1280                               $notice_text = __( 'This plugin failed to load properly and is paused during recovery mode.' );
1281
1282                               printf( '<p><span class="dashicons dashicons-warning"></span> <strong>%s</strong></p>', $notice_text );
1283
1284                               $error = wp_get_plugin_error( $plugin_file );
1285
1286                               if ( false !== $error ) {