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
196 <div class="wrap">
197 <?php screen_icon(); ?>
198 <h2><?php echo esc_html( $title ); ?><?php if ( isset( $post_new_file ) ) : ?> <a href="<?php echo esc_url( $post_new_file ) ?>" class="add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a><?php endif; ?></h2>
199 <?php if ( $notice ) : ?>
200 <div id="notice" class="error"><p><?php echo $notice ?></p></div>
201 <?php endif; ?>
202 <?php if ( $message ) : ?>
203 <div id="message" class="updated"><p><?php echo $message; ?></p></div>
204 <?php endif; ?>
205 <form name="post" action="post.php" method="post" id="post"<?php do_action('post_edit_form_tag'); ?>>
206 <?php wp_nonce_field($nonce_action); ?>
207 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
208 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
209 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
210 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
211 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
212 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
213 <input type="hidden" id="referredby" name="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
214 <?php