~canonical-sysadmins/wordpress/4.5.2

« back to all changes in this revision

Viewing changes to index.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Front to the WordPress application. This file doesn't do anything, but loads
 
4
 * wp-blog-header.php which does and tells WordPress to load the theme.
 
5
 *
 
6
 * @package WordPress
 
7
 */
 
8
 
 
9
/**
 
10
 * Tells WordPress to load the WordPress theme and output it.
 
11
 *
 
12
 * @var bool
 
13
 */
 
14
define('WP_USE_THEMES', true);
 
15
 
 
16
/** Loads the WordPress Environment and Template */
 
17
require( dirname( __FILE__ ) . '/wp-blog-header.php' );