函数原型
options_reading_blog_charset()
函数描述
Render the site charset setting.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-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://wordpress.org/support/article/glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>';
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |

