add_action(‘template_redirect’, function() {
$path = trim(parse_url($_SERVER[‘REQUEST_URI’], PHP_URL_PATH), ‘/’);
if ($path === ‘homepage’) {
$post = get_post(8190);
if ($post && $post->post_content) {
$html = $post->post_content;
// Remove wpautop formatting
$html = str_replace(‘
‘, ”, $html);
header(‘Content-Type: text/html; charset=UTF-8’);
header(‘X-Robots-Tag: noindex, nofollow’);
echo $html;
exit;
}
}
}, 1);