options_reading_blog_charset() – Render the site charset setting.
You appear to be a bot. Output may be restricted
Description
Render the site charset setting.
Usage
options_reading_blog_charset();
Parameters
Returns
void
Source
File name: wordpress/wp-admin/includes/options.php
Lines:
1 to 4 of 4
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>'; }