wpseek.com
WordPress开发者和主题制作者的搜索引擎



options_reading_blog_charset › WordPress Function

Since3.5.0
已弃用n/a
options_reading_blog_charset ( 没有参数 )
定义在:
文档:

Render the site charset setting.



源码

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>';
}