Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_form_advanced

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
265      </ul>
266 </div>
267 <?php
268 }
269 add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'post', 'normal', 'core');
270 ?>
271
272 <?php do_meta_boxes('post', 'normal', $post); ?>
273
274 <?php do_action('edit_form_advanced'); ?>
275
276 <h2><?php _e('Advanced Options'); ?></h2>
277
278 <?php
279 function post_excerpt_meta_box($post) {
280 ?>
281 <label class="hidden" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea>
282 <p><?php _e('Excerpts are optional hand-crafted summaries of your content. You can <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" target="_blank">use them in your template</a>'); ?></p>
283 <?php