Files
2026-03-11 15:57:27 +01:00

14 lines
177 B
PHP

<?php
/**
* Display header
*
* @param string $title Header title
*
* @return void
*/
function duplicator_header($title)
{
echo "<h1>" . esc_html($title) . "</h1>";
}