Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_form_before_permalink

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
441 </div>
442 <?php
443 /**
444  * Fires before the permalink field in the edit form.
445  *
446  * @since 4.1.0
447  *
448  * @param WP_Post $post Post object.
449  */
450 do_action( 'edit_form_before_permalink', $post );
451 ?>
452 <div class="inside">
453 <?php
454 if ( $viewable ) :
455 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
456
457 // As of 4.4, the Get Shortlink button is hidden by default.
458 if ( has_filter( 'pre_get_shortlink' ) || has_filter( 'get_shortlink' ) ) {
459      $shortlink = wp_get_shortlink($post->ID, 'post');