diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index f5ec45ec7b..116056bd68 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -986,7 +986,7 @@ function get_sample_permalink_html( $id, $new_title = null, $new_slug = null ) { if ( false === strpos($permalink, '%postname%') && false === strpos($permalink, '%pagename%') ) { $return = '' . __('Permalink:') . "\n" . '' . $permalink . "\n"; - if ( current_user_can( 'manage_options' ) ) + if ( current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) ) $return .= '' . __('Change Permalinks') . "\n"; if ( isset($view_post) ) $return .= "$view_post\n";