2006-11-19 08:56:05 +01:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
2008-05-25 22:33:13 +02:00
|
|
|
* Front to the WordPress application. This file doesn't do anything, but loads
|
|
|
|
* wp-blog-header.php which does and tells WordPress to load the theme.
|
2008-05-25 17:50:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells WordPress to load the WordPress theme and output it.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
define( 'WP_USE_THEMES', true );
|
2008-05-25 17:50:15 +02:00
|
|
|
|
|
|
|
/** Loads the WordPress Environment and Template */
|
2020-02-06 07:33:11 +01:00
|
|
|
require __DIR__ . '/wp-blog-header.php';
|