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 |
---|---|
1361 | * |
1362 | * @param string $html The HTML of the plugin's auto-update column content, |
1363 | * including toggle auto-update action links and |
1364 | * time to next update. |
1365 | * @param string $plugin_file Path to the plugin file relative to the plugins directory. |
1366 | * @param array $plugin_data An array of plugin data. See get_plugin_data() |
1367 | * and the {@see 'plugin_row_meta'} filter for the list |
1368 | * of possible values. |
1369 | */ |
1370 | echo apply_filters( 'plugin_auto_update_setting_html', $html, $plugin_file, $plugin_data ); |
1371 |
|
1372 | wp_admin_notice( |
1373 | '', |
1374 | array( |
1375 | 'type' => 'error', |
1376 | 'additional_classes' => array( 'notice-alt', 'inline', 'hidden' ), |
1377 | ) |
1378 | ); |
1379 |
|