Make WordPress Core

Changeset 7991 for trunk/index.php


Ignore:
Timestamp:
05/25/2008 03:50:15 PM (18 years ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r4495 r7991  
    11<?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 */
    315define('WP_USE_THEMES', true);
     16
     17/** Loads the WordPress Environment and Template */
    418require('./wp-blog-header.php');
    519?>
Note: See TracChangeset for help on using the changeset viewer.