block_header_area

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

WordPress Version: 6.1

/**
 * Prints the header block template part.
 *
 * @since 5.9.0
 */
function block_header_area()
{
    block_template_part('header');
}

WordPress Version: 5.9

/**
 * Print the header template-part.
 *
 * @since 5.9.0
 */
function block_header_area()
{
    block_template_part('header');
}