_wp_render_title_tag()
Displays title tag with content.
This is an internal function for using it by WP core itself. It's not recommended to use this function in your code.
No Hooks.
Return
null
. Nothing.
Usage
_wp_render_title_tag();
Changelog
Since 4.1.0 | Introduced. |
Since 4.4.0 | Improved title output replaced wp_title(). |
_wp_render_title_tag() wp render title tag code WP 6.1.1
function _wp_render_title_tag() { if ( ! current_theme_supports( 'title-tag' ) ) { return; } echo '<title>' . wp_get_document_title() . '</title>' . "\n"; }