mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 15:40:17 +00:00
18 lines
402 B
PHP
Executable File
18 lines
402 B
PHP
Executable File
<?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
|
|
*/
|
|
define('WP_USE_THEMES', true);
|
|
|
|
/** Loads the WordPress Environment and Template */
|
|
require('./blog/wp-blog-header.php');
|
|
?>
|