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

This hook occurs 2 times in this file.

Line Code
1058      }
1059
1060      if ( false === strpos($permalink, '%postname%') && false === strpos($permalink, '%pagename%') ) {
1061           $return = '<strong>' . __('Permalink:') . "</strong>\n" . '<span id="sample-permalink" tabindex="-1">' . $permalink . "</span>\n";
1062           if ( '' == get_option( 'permalink_structure' ) && current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) )
1063                $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button button-small" target="_blank">' . __('Change Permalinks') . "</a></span>\n";
1064           if ( isset( $view_post ) )
1065                $return .= "<span id='view-post-btn'><a href='$permalink' class='button button-small'>$view_post</a></span>\n";
1066
1067           $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug);
1068
1069           return $return;
1070      }
1071
1072      if ( function_exists('mb_strlen') ) {
1073           if ( mb_strlen($post_name) > 30 ) {
1074                $post_name_abridged = mb_substr($post_name, 0, 14). '&hellip;' . mb_substr($post_name, -14);
1075           } else {
1076                $post_name_abridged = $post_name;
 
Line Code
1088      $view_link = str_replace(array('%pagename%','%postname%'), $post_name, $permalink);
1089      $return =  '<strong>' . __('Permalink:') . "</strong>\n";
1090      $return .= '<span id="sample-permalink" tabindex="-1">' . $display_link . "</span>\n";
1091      $return .= '&lrm;'; // Fix bi-directional text display defect in RTL languages.
1092      $return .= '<span id="edit-slug-buttons"><a href="#post_name" class="edit-slug button button-small hide-if-no-js" onclick="editPermalink(' . $id . '); return false;">' . __('Edit') . "</a></span>\n";
1093      $return .= '<span id="editable-post-name-full">' . $post_name . "</span>\n";
1094      if ( isset($view_post) )
1095           $return .= "<span id='view-post-btn'><a href='$view_link' class='button button-small'>$view_post</a></span>\n";
1096
1097      $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug);
1098
1099      return $return;
1100 }
1101
1102 /**
1103  * Output HTML for the post thumbnail meta-box.
1104  *
1105  * @since 2.9.0
1106  *