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 |
|---|---|
| 47 | <# if ( data.message ) { #> |
| 48 | <h3 class="upload-message">{{ data.message }}</h3> |
| 49 | <# } #> |
| 50 | <?php if ( ! _device_can_upload() ) : ?> |
| 51 | <h3 class="upload-instructions"><?php printf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://wordpress.org/mobile/' ); ?></h3> |
| 52 | <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?> |
| 53 | <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3> |
| 54 | <?php |
| 55 | /** This action is documented in wp-admin/includes/media.php */ |
| 56 | do_action( 'upload_ui_over_quota' ); ?> |
| 57 | |
| 58 | <?php else : ?> |
| 59 | <div class="upload-ui"> |
| 60 | <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h3> |
| 61 | <a href="#" class="browser button button-hero"><?php _e( 'Select Files' ); ?></a> |
| 62 | </div> |
| 63 | |
| 64 | <div class="upload-inline-status"></div> |
| 65 | |