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 |
---|---|
667 | <td><input type="text" id="this_photo_description" name="photo_description" class="tb_this_photo_description text" onkeypress="if(event.keyCode==13) image_selector(this);" value="<?php echo esc_attr($title);?>"/></td> |
668 | </tr><tr> |
669 | <td><input type="button" class="button" onclick="image_selector(this)" value="<?php esc_attr_e('Insert Image'); ?>" /></td> |
670 | </tr></table> |
671 | </div> |
672 | <?php |
673 | /** This action is documented in wp-admin/admin-footer.php */ |
674 | do_action( 'admin_footer' ); |
675 | /** This action is documented in wp-admin/admin-footer.php */ |
676 | do_action( 'admin_print_footer_scripts' ); |
677 | ?> |
678 | <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script> |
679 | </body> |
680 | </html> |
681 |
|