Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ms_user_list_site_actions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
418                /**
419                 * Filters the action links displayed next the sites a user belongs to
420                 * in the Network Admin Users list table.
421                 *
422                 * @since 3.1.0
423                 *
424                 * @param string[] $actions     An array of action links to be displayed. Default 'Edit', 'View'.
425                 * @param int      $userblog_id The site ID.
426                 */
427                $actions = apply_filters( 'ms_user_list_site_actions', $actions, $val->userblog_id );
428
429                $action_count = count( $actions );
430
431                $i = 0;
432
433                foreach ( $actions as $action => $link ) {
434                     ++$i;
435
436                     $sep = ( $i < $action_count ) ? ' | ' : '';