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 |
---|---|
44 | <h2><?php echo esc_html( $title ); ?></h2> |
45 |
|
46 | <ul class="subsubsub"> |
47 | <li><a href="ms-sites.php#form-add-site"><?php _e( 'Create a New Site' ); ?></a> |</li> |
48 | <li><a href="ms-users.php#form-add-user"><?php _e( 'Create a New User' ); ?></a></li> |
49 | </ul> |
50 | <br class="clear" /> |
51 |
|
52 | <p class="youhave"><?php echo $sentence; ?></p> |
53 | <?php do_action( 'wpmuadminresult', '' ); ?> |
54 |
|
55 | <form name="searchform" action="ms-users.php" method="get"> |
56 | <p> |
57 | <input type="hidden" name="action" value="users" /> |
58 | <input type="text" name="s" value="" size="17" /> |
59 | <input class="button" type="submit" name="submit" value="<?php esc_attr_e( 'Search Users' ); ?>" /> |
60 | </p> |
61 | </form> |
62 |
|