wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
options_reading_blog_charset › WordPress Function
Seit3.5.0
Veraltetn/v
› options_reading_blog_charset ( Keine Parameter )
Definiert in: |
|
Codex: |
Render the site charset setting.
Ähnliche Funktionen: options_reading_add_js, options_permalink_add_js, clean_blog_cache, is_main_blog, _canonical_charset
Quellcode
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>'; }