Created
August 25, 2011 07:05
-
-
Save kayue/1170134 to your computer and use it in GitHub Desktop.
Integrate Symfony 2 with Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __DIR__.'/../symfony/app/bootstrap.php.cache'; | |
require_once __DIR__.'/../symfony/app/AppKernel.php'; | |
use Symfony\Component\HttpFoundation\Request; | |
$kernel = new AppKernel('dev', true); | |
$kernel->loadClassCache(); | |
$response = $kernel->handle(Request::createFromGlobals()); | |
// check to see if a route match in Symfony 2 | |
if($response->getStatusCode() !== 404) { | |
// if do, send continue Symfony 2 app | |
$response->send(); | |
} else { | |
// if there is no match, bootstrap and forward to Wordpress | |
// tells WordPress to load the WordPress theme and output it. | |
define('WP_USE_THEMES', true); | |
// loads the WordPress Environment and Template | |
require('./wp-blog-header.php'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works great! The only thing lasting is an Twig interface for the wordpress codex functions