Skip to content

Instantly share code, notes, and snippets.

@normark
Forked from kayue/index.php
Created May 19, 2013 13:34
Show Gist options
  • Save normark/5607631 to your computer and use it in GitHub Desktop.
Save normark/5607631 to your computer and use it in GitHub Desktop.
<?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