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 |
---|---|
268 | ?> |
269 | </select></td> |
270 | </tr> |
271 | </table> |
272 | <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?> |
273 | <?php submit_button( __( 'Add User' ), 'primary', 'add-user', true, array( 'id' => 'submit-add-existing-user' ) ); ?> |
274 | </form> |
275 | <?php endif; ?> |
276 |
|
277 | <?php if ( current_user_can( 'create_users' ) && apply_filters( 'show_network_site_users_add_new_form', true ) ) : ?> |
278 | <h3 id="add-new-user"><?php _e( 'Add New User' ); ?></h3> |
279 | <form action="<?php echo network_admin_url('site-users.php?action=newuser'); ?>" id="newuser" method="post"> |
280 | <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" /> |
281 | <table class="form-table"> |
282 | <tr> |
283 | <th scope="row"><?php _e( 'Username' ) ?></th> |
284 | <td><input type="text" class="regular-text" name="user[username]" /></td> |
285 | </tr> |
286 | <tr> |