options_reading_blog_charset()

最后更新于:2021-11-27 18:13:20

options_reading_blog_charset()

Render the site charset setting.

源文件

文件: gc-admin/includes/options.php

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://gechiui.org/support/article/glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
}