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 |
---|---|
220 |
|
221 | <# if ( data.suggestedWidth && data.suggestedHeight ) { #> |
222 | <p class="suggested-dimensions"> |
223 | <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} × {{data.suggestedHeight}} |
224 | </p> |
225 | <# } #> |
226 |
|
227 | <?php |
228 | /** This action is documented in wp-admin/includes/media.php */ |
229 | do_action( 'post-upload-ui' ); ?> |
230 | </div> |
231 | <?php endif; ?> |
232 | </div> |
233 | </script> |
234 |
|
235 | <script type="text/html" id="tmpl-media-library-view-switcher"> |
236 | <a href="<?php echo esc_url( add_query_arg( 'mode', 'list', $_SERVER['REQUEST_URI'] ) ) ?>" class="view-list"> |
237 | <span class="screen-reader-text"><?php _e( 'List View' ); ?></span> |
238 | </a> |