Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_sample_permalink_html

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
1468       * @since 2.9.0
1469       * @since 4.4.0 Added `$post` parameter.
1470       *
1471       * @param string  $return    Sample permalink HTML markup.
1472       * @param int     $post_id   Post ID.
1473       * @param string  $new_title New sample permalink title.
1474       * @param string  $new_slug  New sample permalink slug.
1475       * @param WP_Post $post      Post object.
1476       */
1477      $return = apply_filters( 'get_sample_permalink_html', $return, $post->ID, $new_title, $new_slug, $post );
1478
1479      return $return;
1480 }
1481
1482 /**
1483  * Output HTML for the post thumbnail meta-box.
1484  *
1485  * @since 2.9.0
1486  *