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 |
---|---|
94 | ?></p> |
95 |
|
96 | <?php if ( ( $GLOBALS['is_IE'] || $GLOBALS['is_opera']) && $max_upload_size > 100 * 1024 * 1024 ) : |
97 | $browser_uploader = admin_url( 'media-new.php?browser-uploader&post_id=' ) . '{{ data.postId }}'; |
98 | ?> |
99 | <p class="big-file-warning"><?php printf( __( 'Your browser has some limitations uploading large files with the multi-file uploader. Please use the <a href="%1$s" target="%2$s">browser uploader</a> for files over 100MB.' ), |
100 | $browser_uploader, '_blank' ); ?></p> |
101 | <?php endif; ?> |
102 |
|
103 | <?php do_action( 'post-upload-ui' ); ?> |
104 | </div> |
105 | <?php endif; ?> |
106 | </div> |
107 | </script> |
108 |
|
109 | <script type="text/html" id="tmpl-uploader-status"> |
110 | <h3><?php _e( 'Uploading' ); ?></h3> |
111 | <a class="upload-dismiss-errors" href="#"><?php _e('Dismiss Errors'); ?></a> |
112 |
|