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 |
|---|---|
| 73 | $update_actions['updates_page'] = '<a href="' . self_admin_url( 'update-core.php' ) . '" target="_parent">' . __( 'Return to WordPress Updates page' ) . '</a>'; |
| 74 | |
| 75 | /** |
| 76 | * Filters the list of action links available following a translations update. |
| 77 | * |
| 78 | * @since 3.7.0 |
| 79 | * |
| 80 | * @param array $update_actions Array of translations update links. |
| 81 | */ |
| 82 | $update_actions = apply_filters( 'update_translations_complete_actions', $update_actions ); |
| 83 | |
| 84 | if ( $update_actions && $this->display_footer_actions ) |
| 85 | $this->feedback( implode( ' | ', $update_actions ) ); |
| 86 | } |
| 87 | } |
| 88 | |