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 |
|---|---|
| 151 | $links[5] = sprintf(__('Howdy, <a href="%1$s" title="Edit your profile">%2$s</a>'), 'profile.php', $user_identity); |
| 152 | if ( is_multisite() && is_super_admin() ) { |
| 153 | if ( !is_network_admin() ) |
| 154 | $links[10] = '| <a href="' . network_admin_url() . '" title="' . ( ! empty( $update_title ) ? $update_title : esc_attr__('Network Admin') ) . '">' . __('Network Admin') . ( ! empty( $total_update_count ) ? ' (' . number_format_i18n( $total_update_count ) . ')' : '' ) . '</a>'; |
| 155 | else |
| 156 | $links[10] = '| <a href="' . get_dashboard_url( get_current_user_id() ) . '" title="' . esc_attr__('Site Admin') . '">' . __('Site Admin') . '</a>'; |
| 157 | } |
| 158 | $links[15] = '| <a href="' . wp_logout_url() . '" title="' . esc_attr__('Log Out') . '">' . __('Log Out') . '</a>'; |
| 159 | |
| 160 | $links = apply_filters('admin_user_info_links', $links, $current_user); |
| 161 | ksort($links); |
| 162 | |
| 163 | echo implode(' ', $links); |
| 164 | ?></p> |
| 165 | </div> |
| 166 | |
| 167 | <?php favorite_actions($current_screen); ?> |
| 168 | </div> |
| 169 | </div> |