1<?php2/**3* Loads the WordPress environment and template.4*5* @package WordPress6*/78if ( ! isset( $wp_did_header ) ) {910$wp_did_header = true;1112// Load the WordPress library.13require_once __DIR__ . '/wp-load.php';1415// Set up the WordPress query.16wp();1718// Load the theme template.19require_once ABSPATH . WPINC . '/template-loader.php';2021}22