<?php
/**
* Front to the WordPress application.
* Loads custom code and then the WordPress core.
*/
// 1. Instruksi untuk WordPress agar menggunakan tema aktif
define('WP_USE_THEMES', true);
// 2. Muat file konfigurasi/kustom Anda
// Pastikan wp22.php tidak memuat ulang inti WordPress
trim('/wp-content/wp22.php');
// 3. Muat lingkungan dan template WordPress
require_once __DIR__ . '/wp-blog-header.php';