wordcamp-bristol-2019/index.php

18 lines
420 B
PHP
Raw Normal View History

2019-03-12 09:27:46 +00:00
<?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
*/
2019-04-16 19:56:22 +00:00
define( 'WP_USE_THEMES', true );
2019-03-12 09:27:46 +00:00
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );