Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_edit_form_tag

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
448 <form name="post" action="post.php" method="post" id="post"
449 <?php
450 /**
451  * Fires inside the post editor form tag.
452  *
453  * @since 3.0.0
454  *
455  * @param WP_Post $post Post object.
456  */
457 do_action( 'post_edit_form_tag', $post );
458
459 $referer = wp_get_referer();
460 ?>
461 >
462 <?php wp_nonce_field( $nonce_action ); ?>
463 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID; ?>" />
464 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ); ?>" />
465 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ); ?>" />
466 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />