- Add HVAC_Test_User_Factory class with: * User creation with specific roles * Multiple role support * Persona management system * Account cleanup integration - Create comprehensive test suite in HVAC_Test_User_Factory_Test.php - Update testing improvement plan documentation - Add implementation decisions to project memory bank - Restructure .gitignore with: * Whitelist approach for better file management * Explicit backup exclusions * Specific bin directory inclusions Part of the Account Management component from the testing framework improvement plan.
21 lines
351 B
PHP
21 lines
351 B
PHP
<?php
|
|
/**
|
|
* Loads the WordPress environment and template.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
if ( ! isset( $wp_did_header ) ) {
|
|
|
|
$wp_did_header = true;
|
|
|
|
// Load the WordPress library.
|
|
require_once __DIR__ . '/wp-load.php';
|
|
|
|
// Set up the WordPress query.
|
|
wp();
|
|
|
|
// Load the theme template.
|
|
require_once ABSPATH . WPINC . '/template-loader.php';
|
|
|
|
}
|