diff --git a/wp-admin/options-reading.php b/wp-admin/options-reading.php index 28897c18d0..d1ff70f9f9 100644 --- a/wp-admin/options-reading.php +++ b/wp-admin/options-reading.php @@ -120,12 +120,17 @@ else : - - - -

character encoding of your site (UTF-8 is recommended, if you are adventurous there are some other encodings)' ); ?>

- - +'; + echo '

' . __( 'The character encoding of your site (UTF-8 is recommended)' ) + . '

'; +} + +if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) ) + add_settings_field( 'blog_charset', __( 'Encoding for pages and feeds' ), 'options_reading_blog_charset', 'reading' ); + +do_settings_fields( 'reading', 'default' ); ?>