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 |
---|---|
60 | <input name="publish" type="submit" id="publish" tabindex="6" style="font-weight: bold;" value="<?php _e('Publish') ?>" /> |
61 | <?php endif; ?> |
62 |
|
63 | <?php if ('bookmarklet' != $mode) { |
64 | echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing »') . '" />'; |
65 | } ?> |
66 | <input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" /> |
67 | </p> |
68 |
|
69 | <?php do_action('simple_edit_form', ''); ?> |
70 |
|
71 | </div> |
72 | </form> |
73 |
|
74 | </div> |
75 |
|