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.
This hook occurs 3 times in this file.
Line | Code |
---|---|
382 | * |
383 | * @param object $post |
384 | */ |
385 | function page_revisions_meta_box($post) { |
386 | wp_list_post_revisions(); |
387 | } |
388 | add_meta_box('revisionsdiv', __('Page Revisions'), 'page_revisions_meta_box', 'page', 'normal', 'core'); |
389 | endif; |
390 |
|
391 | do_action('do_meta_boxes', 'page', 'normal', $post); |
392 | do_action('do_meta_boxes', 'page', 'advanced', $post); |
393 | do_action('do_meta_boxes', 'page', 'side', $post); |
394 |
|
395 | require_once('admin-header.php'); |
396 | ?> |
397 |
|
398 | <div class="wrap"> |
399 | <?php screen_icon(); ?> |
400 | <h2><?php echo esc_html( $title ); ?></h2> |
401 |
|
402 | <form name="post" action="page.php" method="post" id="post"> |