language_attributes()
Displays the language attributes for the 'html' tag.
Builds up a set of HTML attributes containing the text direction and language information for the page.
1 time — 0.000125 sec (fast) | 50000 times — 2.85 sec (fast)
No Hooks.
Return
null
. Nothing (null).
Usage
language_attributes( $doctype );
- $doctype(string)
- The type of HTML document. Accepts 'xhtml' or 'html'.
Default: 'html'
Examples
#1 How to use in code
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> ...
#2 What language_attributes() outputs
If you have a site in Russian, then:
language_attributes(); // output: lang="ru-RU"
Changelog
Since 2.1.0 | Introduced. |
Since 4.3.0 | Converted into a wrapper for get_language_attributes(). |
language_attributes() language attributes code WP 6.8
function language_attributes( $doctype = 'html' ) { echo get_language_attributes( $doctype ); }