Changeset 7991 for trunk/index.php
- Timestamp:
- 05/25/08 15:50:15 (6 months ago)
- Files:
-
- trunk/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/index.php
r4495 r7991 1 1 <?php 2 /* Short and sweet */ 2 /** 3 * Front to the WordPress application. Most of WordPress is loaded through this 4 * file. This file doesn't do anything, but loads the file which does and tells 5 * WordPress to load the theme. 6 * 7 * @package WordPress 8 */ 9 10 /** 11 * Tells WordPress to load the WordPress theme and output it. 12 * 13 * @var bool 14 */ 3 15 define('WP_USE_THEMES', true); 16 17 /** Loads the WordPress Environment and Template */ 4 18 require('./wp-blog-header.php'); 5 19 ?>
