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 |
|---|---|
| 80 | ); |
| 81 | |
| 82 | /** |
| 83 | * Filters the list of action links available following a translations update. |
| 84 | * |
| 85 | * @since 3.7.0 |
| 86 | * |
| 87 | * @param string[] $update_actions Array of translations update links. |
| 88 | */ |
| 89 | $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions ); |
| 90 | |
| 91 | if ( $update_actions && $this->display_footer_actions ) { |
| 92 | $this->feedback( implode( ' | ', $update_actions ) ); |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |