_block_template_render_title_tag

The timeline below displays how wordpress function _block_template_render_title_tag has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.8

/**
 * Displays title tag with content, regardless of whether theme has title-tag support.
 *
 * @access private
 * @since 5.8.0
 *
 * @see _wp_render_title_tag()
 */
function _block_template_render_title_tag()
{
    echo '<title>' . wp_get_document_title() . '</title>' . "\n";
}