language_attributes( string $doctype = 'html' )

Displays the language attributes for the html tag.


Description

Builds up a set of html attributes containing the text direction and language information for the page.


Parameters

$doctype

(string) (Optional) The type of html document. Accepts 'xhtml' or 'html'.

Default value: 'html'


Source

File: wp-includes/general-template.php

function language_attributes( $doctype = 'html' ) {
	echo get_language_attributes( $doctype );
}


Changelog

Changelog
Version Description
WP-4.3.0 Converted into a wrapper for get_language_attributes().
WP-2.1.0 Introduced.