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 |
|---|---|
| 233 | <?php |
| 234 | meta_form(); |
| 235 | ?> |
| 236 | <div id="ajax-response"></div> |
| 237 | </div> |
| 238 | </div> |
| 239 | </fieldset> |
| 240 | </div> |
| 241 | |
| 242 | <?php do_action('dbx_post_advanced'); ?> |
| 243 | |
| 244 | </div> |
| 245 | |
| 246 | <?php if ('edit' == $action) : $delete_nonce = wp_create_nonce( 'delete-post_' . $post_ID ); ?> |
| 247 | <input name="deletepost" class="button delete" type="submit" id="deletepost" tabindex="10" value="<?php _e('Delete this post') ?>" <?php echo "onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { document.forms.post._wpnonce.value = '$delete_nonce'; return true;}return false;\""; ?> /> |
| 248 | <?php endif; ?> |
| 249 | |
| 250 | </div> |
| 251 | |