Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ms_user_row_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
510
511           /**
512            * Filters the action links displayed under each user in the Network Admin Users list table.
513            *
514            * @since 3.2.0
515            *
516            * @param string[] $actions An array of action links to be displayed. Default 'Edit', 'Delete'.
517            * @param WP_User  $user    WP_User object.
518            */
519           $actions = apply_filters( 'ms_user_row_actions', $actions, $user );
520           return $this->row_actions( $actions );
521      }
522 }
523