/home/techb158/public_html/wp-content/plugins/kirki/libraries/framework/View
Edit: /home/techb158/public_html/wp-content/plugins/kirki/libraries/framework/View/layout-wrapper.php (1015B)
get_active();
if ($active === null || empty($active['resolved_path'])) {
return;
}
$path = $active['resolved_path'];
\ob_start();
require $path;
$content = (string) \ob_get_clean();
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Assembled layout HTML; dynamic data is escaped in view templates via esc_*.
echo app(TemplateEngine::class)->wrap_layout($content);
}