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 |
|---|---|
| 244 | * |
| 245 | * The section is only enabled if a callback is hooked to the action, |
| 246 | * and if there is more than one defined color scheme for the admin. |
| 247 | * |
| 248 | * @since 3.0.0 |
| 249 | * @since 3.8.1 Added `$user_id` parameter. |
| 250 | * |
| 251 | * @param int $user_id The user ID. |
| 252 | */ |
| 253 | do_action( 'admin_color_scheme_picker', $user_id ); |
| 254 | ?></td> |
| 255 | </tr> |
| 256 | <?php |
| 257 | endif; // $_wp_admin_css_colors |
| 258 | if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> |
| 259 | <tr class="user-comment-shortcuts-wrap"> |
| 260 | <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th> |
| 261 | <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( ! empty( $profileuser->comment_shortcuts ) ) checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td> |
| 262 | </tr> |