2006-11-19 07:56:05 +00:00
|
|
|
<?php
|
2008-05-25 15:50:15 +00:00
|
|
|
/**
|
2008-05-25 20:33:13 +00: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 15:50:15 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells WordPress to load the WordPress theme and output it.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
2017-11-30 23:11:00 +00:00
|
|
|
define( 'WP_USE_THEMES', true );
|
2008-05-25 15:50:15 +00:00
|
|
|
|
|
|
|
/** Loads the WordPress Environment and Template */
|
2013-09-25 00:18:11 +00:00
|
|
|
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
|