options_reading_blog_charset()WP 3.5.0

Render the site charset setting.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

options_reading_blog_charset();

Список изменений

С версии 3.5.0 Введена.

Код options_reading_blog_charset() WP 6.5.2

function options_reading_blog_charset() {
	echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />';
	echo '<p class="description">' . __( 'The <a href="https://wordpress.org/documentation/article/wordpress-glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
}