WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 1133 | } |
| 1134 | |
| 1135 | if ( false === strpos($permalink, '%postname%') && false === strpos($permalink, '%pagename%') ) { |
| 1136 | $return = '<strong>' . __('Permalink:') . "</strong>\n" . '<span id="sample-permalink">' . $permalink . "</span>\n"; |
| 1137 | if ( '' == get_option( 'permalink_structure' ) && current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) ) |
| 1138 | $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button" target="_blank">' . __('Change Permalinks') . "</a></span>\n"; |
| 1139 | if ( isset($view_post) ) |
| 1140 | $return .= "<span id='view-post-btn'><a href='$permalink' class='button' target='_blank'>$view_post</a></span>\n"; |
| 1141 | |
| 1142 | $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug); |
| 1143 | |
| 1144 | return $return; |
| 1145 | } |
| 1146 | |
| 1147 | if ( function_exists('mb_strlen') ) { |
| 1148 | if ( mb_strlen($post_name) > 30 ) { |
| 1149 | $post_name_abridged = mb_substr($post_name, 0, 14). '…' . mb_substr($post_name, -14); |
| 1150 | } else { |
| 1151 | $post_name_abridged = $post_name; |
| Line | Code |
| 1163 | $view_link = str_replace(array('%pagename%','%postname%'), $post_name, $permalink); |
| 1164 | $return = '<strong>' . __('Permalink:') . "</strong>\n"; |
| 1165 | $return .= '<span id="sample-permalink">' . $display_link . "</span>\n"; |
| 1166 | $return .= '‎'; // Fix bi-directional text display defect in RTL languages. |
| 1167 | $return .= '<span id="edit-slug-buttons"><a href="#post_name" class="edit-slug button hide-if-no-js" onclick="editPermalink(' . $id . '); return false;">' . __('Edit') . "</a></span>\n"; |
| 1168 | $return .= '<span id="editable-post-name-full">' . $post_name . "</span>\n"; |
| 1169 | if ( isset($view_post) ) |
| 1170 | $return .= "<span id='view-post-btn'><a href='$view_link' class='button' target='_blank'>$view_post</a></span>\n"; |
| 1171 | |
| 1172 | $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug); |
| 1173 | |
| 1174 | return $return; |
| 1175 | } |
| 1176 | |
| 1177 | /** |
| 1178 | * Output HTML for the post thumbnail meta-box. |
| 1179 | * |
| 1180 | * @since 2.9.0 |
| 1181 | * |