changeset 0 | d970ebf37754 |
child 7 | cf61fcea0001 |
-1:000000000000 | 0:d970ebf37754 |
---|---|
1 <?php |
|
2 /** |
|
3 * Loads the WordPress environment and template. |
|
4 * |
|
5 * @package WordPress |
|
6 */ |
|
7 |
|
8 if ( !isset($wp_did_header) ) { |
|
9 |
|
10 $wp_did_header = true; |
|
11 |
|
12 require_once( dirname(__FILE__) . '/wp-load.php' ); |
|
13 |
|
14 wp(); |
|
15 |
|
16 require_once( ABSPATH . WPINC . '/template-loader.php' ); |
|
17 |
|
18 } |