homegrade_theme_production/includes/rooting.php

14 lines
332 B
PHP

<?php
add_action('template_redirect', 'redirect_to_demo_components_page');
function redirect_to_demo_components_page()
{
if ($_SERVER['REQUEST_URI'] == '/demo-components') {
global $wp_query;
$wp_query->is_404 = false;
status_header(200);
include(dirname(__DIR__, 1) . '/demo-components.php');
exit();
}
}