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 |
---|---|
374 | * Filter the action links displayed under each user in the Users list table. |
375 | * |
376 | * @since 2.8.0 |
377 | * |
378 | * @param array $actions An array of action links to be displayed. |
379 | * Default 'Edit', 'Delete' for single site, and |
380 | * 'Edit', 'Remove' for Multisite. |
381 | * @param WP_User $user_object WP_User object for the currently-listed user. |
382 | */ |
383 | $actions = apply_filters( 'user_row_actions', $actions, $user_object ); |
384 | $edit .= $this->row_actions( $actions ); |
385 |
|
386 | // Set up the checkbox ( because the user is editable, otherwise it's empty ) |
387 | $checkbox = '<label class="screen-reader-text" for="cb-select-' . $user_object->ID . '">' . sprintf( __( 'Select %s' ), $user_object->user_login ) . '</label>' |
388 | . "<input type='checkbox' name='users[]' id='user_{$user_object->ID}' class='$role' value='{$user_object->ID}' />"; |
389 |
|
390 | } else { |
391 | $edit = '<strong>' . $user_object->user_login . '</strong>'; |
392 | } |