Skip to content

Instantly share code, notes, and snippets.

@mikeemoo
Created May 23, 2012 12:28
Show Gist options
  • Save mikeemoo/2774997 to your computer and use it in GitHub Desktop.
Save mikeemoo/2774997 to your computer and use it in GitHub Desktop.
App dev with wordpress
<?php
$kernel = new AppKernel('dev', true);
$kernel->loadClassCache();
$response = $kernel->handle(Request::createFromGlobals());
if ($response->getStatusCode() !== 404)
{
$response->send();
}
else
{
// load wordpress here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment