Files
WordPress/index.php
T

18 lines
397 B
PHP
Raw Normal View History

<?php
/**
* 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.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
2005-02-13 20:38:28 +00:00
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
2004-04-16 02:24:37 +00:00
require('./wp-blog-header.php');
?>