html_type_rss()
Displays the HTML type.
Source
File: wp-includes/feed.php
function html_type_rss() {
$type = get_bloginfo('html_type');
if (strpos($type, 'xhtml') !== false)
$type = 'xhtml';
else
$type = 'html';
echo $type;
}
Changelog
Version | Description |
---|---|
2.2.0 | |
CP-2.0.0 Site content type will always be 'html'. | Introduced. CP-2.0.0 Site content type will always be 'html'. |