WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1127 | * @type string $Title The human-readable title of the plugin. |
1128 | * @type string $AuthorName Plugin author's name. |
1129 | * @type bool $update Whether there's an available update. Default null. |
1130 | * } |
1131 | * @param string $status Status filter currently applied to the plugin list. Possible |
1132 | * values are: 'all', 'active', 'inactive', 'recently_activated', |
1133 | * 'upgrade', 'mustuse', 'dropins', 'search', 'paused', |
1134 | * 'auto-update-enabled', 'auto-update-disabled'. |
1135 | */ |
1136 | $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status ); |
1137 |
|
1138 | echo implode( ' | ', $plugin_meta ); |
1139 |
|
1140 | echo '</div>'; |
1141 |
|
1142 | if ( $paused ) { |
1143 | $notice_text = __( 'This plugin failed to load properly and is paused during recovery mode.' ); |
1144 |
|
1145 | printf( '<p><span class="dashicons dashicons-warning"></span> <strong>%s</strong></p>', $notice_text ); |