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 |
---|---|
222 | <# if ( data.message ) { #> |
223 | <h2 class="upload-message">{{ data.message }}</h2> |
224 | <# } #> |
225 | <?php if ( ! _device_can_upload() ) : ?> |
226 | <h2 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.' ), 'https://apps.wordpress.org/' ); ?></h2> |
227 | <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?> |
228 | <h2 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h2> |
229 | <?php |
230 | /** This action is documented in wp-admin/includes/media.php */ |
231 | do_action( 'upload_ui_over_quota' ); |
232 | ?> |
233 |
|
234 | <?php else : ?> |
235 | <div class="upload-ui"> |
236 | <h2 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h2> |
237 | <p class="upload-instructions drop-instructions"><?php _ex( 'or', 'Uploader: Drop files here - or - Select Files' ); ?></p> |
238 | <button type="button" class="browser button button-hero"><?php _e( 'Select Files' ); ?></button> |
239 | </div> |
240 |
|