blob: 1480288e0a92fa4d3cbab0f67a97c68ca84d10f7 [file] [log] [blame]
thatcher1419f362006-01-17 23:56:12 +00001<?php
mrowe@apple.comda4c48a2008-03-31 22:32:21 +00002/**
3 * Used to setup and fix common variables and include
4 * the WordPress procedural and class library.
5 *
6 * You should not have to change this file and allows
7 * for some configuration in wp-config.php.
8 *
9 * @package WordPress
10 */
11
12if ( !defined('WP_MEMORY_LIMIT') )
13 define('WP_MEMORY_LIMIT', '32M');
14
15if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
16 @ini_set('memory_limit', WP_MEMORY_LIMIT);
17
18
19/**
20 * wp_unregister_GLOBALS() - Turn register globals off
21 *
22 * @access private
23 * @since 2.1.0
24 * @return null Will return null if register_globals PHP directive was disabled
25 */
bdashe1974712007-06-04 09:41:09 +000026function wp_unregister_GLOBALS() {
27 if ( !ini_get('register_globals') )
28 return;
29
30 if ( isset($_REQUEST['GLOBALS']) )
31 die('GLOBALS overwrite attempt detected');
32
33 // Variables that shouldn't be unset
34 $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix');
35
36 $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());
mrowe@apple.com39a471e2007-10-29 22:16:10 +000037 foreach ( $input as $k => $v )
bdashe1974712007-06-04 09:41:09 +000038 if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) {
39 $GLOBALS[$k] = NULL;
40 unset($GLOBALS[$k]);
41 }
42}
43
mrowe@apple.com39a471e2007-10-29 22:16:10 +000044wp_unregister_GLOBALS();
bdashe1974712007-06-04 09:41:09 +000045
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000046unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
bdashe1974712007-06-04 09:41:09 +000047
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000048/**
49 * The $blog_id global, which you can change in the config allows you to create a simple
50 * multiple blog installation using just one WordPress and changing $blog_id around.
51 *
52 * @global int $blog_id
53 * @since 2.0.0
54 */
bdashe1974712007-06-04 09:41:09 +000055if ( ! isset($blog_id) )
56 $blog_id = 1;
thatcher1419f362006-01-17 23:56:12 +000057
58// Fix for IIS, which doesn't set REQUEST_URI
bdashe1974712007-06-04 09:41:09 +000059if ( empty( $_SERVER['REQUEST_URI'] ) ) {
bdashe1974712007-06-04 09:41:09 +000060
mrowe@apple.com39a471e2007-10-29 22:16:10 +000061 // IIS Mod-Rewrite
62 if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) {
63 $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
64 }
65 // IIS Isapi_Rewrite
66 else if (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
67 $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
68 }
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000069 else
70 {
71 // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
mrowe@apple.com83b826c2008-04-25 22:44:00 +000072 if ( isset($_SERVER['PATH_INFO']) ) {
73 if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
74 $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
75 else
76 $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
77 }
mrowe@apple.com39a471e2007-10-29 22:16:10 +000078
79 // Append the query string if it exists and isn't null
80 if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
81 $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
82 }
thatcher1419f362006-01-17 23:56:12 +000083 }
84}
85
bdashe1974712007-06-04 09:41:09 +000086// Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
87if ( isset($_SERVER['SCRIPT_FILENAME']) && ( strpos($_SERVER['SCRIPT_FILENAME'], 'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7 ) )
88 $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
89
90// Fix for Dreamhost and other PHP as CGI hosts
91if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false)
92 unset($_SERVER['PATH_INFO']);
93
94// Fix empty PHP_SELF
95$PHP_SELF = $_SERVER['PHP_SELF'];
96if ( empty($PHP_SELF) )
97 $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]);
98
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000099if ( version_compare( '4.3', phpversion(), '>' ) ) {
100 die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.' );
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000101}
thatcher1419f362006-01-17 23:56:12 +0000102
bdashe1974712007-06-04 09:41:09 +0000103if ( !extension_loaded('mysql') && !file_exists(ABSPATH . 'wp-content/db.php') )
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000104 die( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' );
thatcher1419f362006-01-17 23:56:12 +0000105
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000106/**
107 * timer_start() - PHP 4 standard microtime start capture
108 *
109 * @access private
110 * @since 0.71
111 * @global int $timestart Seconds and Microseconds added together from when function is called
112 * @return bool Always returns true
113 */
thatcher1419f362006-01-17 23:56:12 +0000114function timer_start() {
115 global $timestart;
116 $mtime = explode(' ', microtime() );
117 $mtime = $mtime[1] + $mtime[0];
118 $timestart = $mtime;
119 return true;
120}
bdashe1974712007-06-04 09:41:09 +0000121
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000122/**
123 * timer_stop() - Return and/or display the time from the page start to when function is called.
124 *
125 * You can get the results and print them by doing:
126 * <code>
127 * $nTimePageTookToExecute = timer_stop();
128 * echo $nTimePageTookToExecute;
129 * </code>
130 *
131 * Or instead, you can do:
132 * <code>
133 * timer_stop(1);
134 * </code>
135 * which will do what the above does. If you need the result, you can assign it to a variable, but
136 * most cases, you only need to echo it.
137 *
138 * @since 0.71
139 * @global int $timestart Seconds and Microseconds added together from when timer_start() is called
140 * @global int $timeend Seconds and Microseconds added together from when function is called
141 *
142 * @param int $display Use '0' or null to not echo anything and 1 to echo the total time
143 * @param int $precision The amount of digits from the right of the decimal to display. Default is 3.
144 * @return float The "second.microsecond" finished time calculation
145 */
bdashe1974712007-06-04 09:41:09 +0000146function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(1), will echo $timetotal
147 global $timestart, $timeend;
148 $mtime = microtime();
149 $mtime = explode(' ',$mtime);
150 $mtime = $mtime[1] + $mtime[0];
151 $timeend = $mtime;
152 $timetotal = $timeend-$timestart;
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000153 $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision);
bdashe1974712007-06-04 09:41:09 +0000154 if ( $display )
155 echo $r;
156 return $r;
157}
thatcher1419f362006-01-17 23:56:12 +0000158timer_start();
159
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000160// Add define('WP_DEBUG',true); to wp-config.php to enable display of notices during development.
161if (defined('WP_DEBUG') and WP_DEBUG == true) {
162 error_reporting(E_ALL);
163} else {
164 error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
165}
thatcher1419f362006-01-17 23:56:12 +0000166
167// For an advanced caching plugin to use, static because you would only want one
168if ( defined('WP_CACHE') )
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000169 @include ABSPATH . 'wp-content/advanced-cache.php';
thatcher1419f362006-01-17 23:56:12 +0000170
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000171/**
172 * Stores the location of the WordPress directory of functions, classes, and core content.
173 *
174 * @since 1.0.0
175 */
thatcher1419f362006-01-17 23:56:12 +0000176define('WPINC', 'wp-includes');
bdashe1974712007-06-04 09:41:09 +0000177
178if ( !defined('LANGDIR') ) {
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000179 /**
180 * Stores the location of the language directory. First looks for language folder in wp-content
181 * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.
182 *
183 * @since 2.1.0
184 */
bdashe1974712007-06-04 09:41:09 +0000185 if ( file_exists(ABSPATH . 'wp-content/languages') && @is_dir(ABSPATH . 'wp-content/languages') )
186 define('LANGDIR', 'wp-content/languages'); // no leading slash, no trailing slash
187 else
188 define('LANGDIR', WPINC . '/languages'); // no leading slash, no trailing slash
189}
190
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000191/**
192 * Allows for the plugins directory to be moved from the default location.
193 *
194 * This isn't used everywhere. Constant is not used in plugin_basename()
195 * which might cause conflicts with changing this.
196 *
197 * @since 2.1
198 */
bdashe1974712007-06-04 09:41:09 +0000199if ( !defined('PLUGINDIR') )
200 define('PLUGINDIR', 'wp-content/plugins'); // no leading slash, no trailing slash
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000201
202require (ABSPATH . WPINC . '/compat.php');
203require (ABSPATH . WPINC . '/functions.php');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000204require (ABSPATH . WPINC . '/classes.php');
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000205
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000206require_wp_db();
bdashe1974712007-06-04 09:41:09 +0000207
mrowe@apple.combea3bc82007-12-30 16:21:36 +0000208if ( !empty($wpdb->error) )
209 dead_db();
210
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000211$prefix = $wpdb->set_prefix($table_prefix);
bdashe1974712007-06-04 09:41:09 +0000212
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000213if ( is_wp_error($prefix) )
214 wp_die('<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.');
thatcher1419f362006-01-17 23:56:12 +0000215
bdashe1974712007-06-04 09:41:09 +0000216if ( file_exists(ABSPATH . 'wp-content/object-cache.php') )
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000217 require_once (ABSPATH . 'wp-content/object-cache.php');
bdashe1974712007-06-04 09:41:09 +0000218else
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000219 require_once (ABSPATH . WPINC . '/cache.php');
thatcher1419f362006-01-17 23:56:12 +0000220
bdashe1974712007-06-04 09:41:09 +0000221wp_cache_init();
thatcher1419f362006-01-17 23:56:12 +0000222
bdashe1974712007-06-04 09:41:09 +0000223require (ABSPATH . WPINC . '/plugin.php');
thatcher1419f362006-01-17 23:56:12 +0000224require (ABSPATH . WPINC . '/default-filters.php');
bdashe1974712007-06-04 09:41:09 +0000225include_once(ABSPATH . WPINC . '/streams.php');
226include_once(ABSPATH . WPINC . '/gettext.php');
227require_once (ABSPATH . WPINC . '/l10n.php');
thatcher1419f362006-01-17 23:56:12 +0000228
bdashe1974712007-06-04 09:41:09 +0000229if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000230 if ( defined('WP_SITEURL') )
231 $link = WP_SITEURL . '/wp-admin/install.php';
232 elseif (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false)
233 $link = preg_replace('|/wp-admin/?.*?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
thatcher1419f362006-01-17 23:56:12 +0000234 else
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000235 $link = preg_replace('|/[^/]+?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
236 require_once(ABSPATH . WPINC . '/kses.php');
237 require_once(ABSPATH . WPINC . '/pluggable.php');
238 wp_redirect($link);
239 die(); // have to die here ~ Mark
thatcher1419f362006-01-17 23:56:12 +0000240}
thatcher1419f362006-01-17 23:56:12 +0000241
bdashe1974712007-06-04 09:41:09 +0000242require (ABSPATH . WPINC . '/formatting.php');
243require (ABSPATH . WPINC . '/capabilities.php');
244require (ABSPATH . WPINC . '/query.php');
245require (ABSPATH . WPINC . '/theme.php');
246require (ABSPATH . WPINC . '/user.php');
247require (ABSPATH . WPINC . '/general-template.php');
248require (ABSPATH . WPINC . '/link-template.php');
249require (ABSPATH . WPINC . '/author-template.php');
250require (ABSPATH . WPINC . '/post.php');
251require (ABSPATH . WPINC . '/post-template.php');
252require (ABSPATH . WPINC . '/category.php');
253require (ABSPATH . WPINC . '/category-template.php');
254require (ABSPATH . WPINC . '/comment.php');
255require (ABSPATH . WPINC . '/comment-template.php');
256require (ABSPATH . WPINC . '/rewrite.php');
257require (ABSPATH . WPINC . '/feed.php');
258require (ABSPATH . WPINC . '/bookmark.php');
259require (ABSPATH . WPINC . '/bookmark-template.php');
thatcher1419f362006-01-17 23:56:12 +0000260require (ABSPATH . WPINC . '/kses.php');
bdashe1974712007-06-04 09:41:09 +0000261require (ABSPATH . WPINC . '/cron.php');
thatcher1419f362006-01-17 23:56:12 +0000262require (ABSPATH . WPINC . '/version.php');
bdashe1974712007-06-04 09:41:09 +0000263require (ABSPATH . WPINC . '/deprecated.php');
264require (ABSPATH . WPINC . '/script-loader.php');
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000265require (ABSPATH . WPINC . '/taxonomy.php');
266require (ABSPATH . WPINC . '/update.php');
267require (ABSPATH . WPINC . '/canonical.php');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000268require (ABSPATH . WPINC . '/shortcodes.php');
269require (ABSPATH . WPINC . '/media.php');
thatcher1419f362006-01-17 23:56:12 +0000270
bdashe1974712007-06-04 09:41:09 +0000271if (strpos($_SERVER['PHP_SELF'], 'install.php') === false) {
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000272 // Used to guarantee unique hash cookies
273 $cookiehash = md5(get_option('siteurl'));
274 /**
275 * Used to guarantee unique hash cookies
276 * @since 1.5
277 */
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000278 define('COOKIEHASH', $cookiehash);
bdashe1974712007-06-04 09:41:09 +0000279}
280
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000281/**
282 * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php
283 * @since 2.5
284 */
285$wp_default_secret_key = 'put your unique phrase here';
286
287/**
288 * It is possible to define this in wp-config.php
289 * @since 2.0.0
290 */
bdashe1974712007-06-04 09:41:09 +0000291if ( !defined('USER_COOKIE') )
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000292 define('USER_COOKIE', 'wordpressuser_' . COOKIEHASH);
293
294/**
295 * It is possible to define this in wp-config.php
296 * @since 2.0.0
297 */
bdashe1974712007-06-04 09:41:09 +0000298if ( !defined('PASS_COOKIE') )
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000299 define('PASS_COOKIE', 'wordpresspass_' . COOKIEHASH);
300
301/**
302 * It is possible to define this in wp-config.php
303 * @since 2.5
304 */
305if ( !defined('AUTH_COOKIE') )
306 define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
307
308/**
309 * It is possible to define this in wp-config.php
310 * @since 2.3.0
311 */
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000312if ( !defined('TEST_COOKIE') )
313 define('TEST_COOKIE', 'wordpress_test_cookie');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000314
315/**
316 * It is possible to define this in wp-config.php
317 * @since 1.2.0
318 */
bdashe1974712007-06-04 09:41:09 +0000319if ( !defined('COOKIEPATH') )
320 define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('home') . '/' ) );
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000321
322/**
323 * It is possible to define this in wp-config.php
324 * @since 1.5.0
325 */
bdashe1974712007-06-04 09:41:09 +0000326if ( !defined('SITECOOKIEPATH') )
327 define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('siteurl') . '/' ) );
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000328
329/**
330 * It is possible to define this in wp-config.php
331 * @since 2.0.0
332 */
bdashe1974712007-06-04 09:41:09 +0000333if ( !defined('COOKIE_DOMAIN') )
334 define('COOKIE_DOMAIN', false);
mrowe@apple.com83b826c2008-04-25 22:44:00 +0000335
336/**
337 * It is possible to define this in wp-config.php
338 * @since 2.5.0
339 */
340if ( !defined( 'AUTOSAVE_INTERVAL' ) )
341 define( 'AUTOSAVE_INTERVAL', 60 );
342
thatcher1419f362006-01-17 23:56:12 +0000343
344require (ABSPATH . WPINC . '/vars.php');
345
thatcher1419f362006-01-17 23:56:12 +0000346// Check for hacks file if the option is enabled
bdashe1974712007-06-04 09:41:09 +0000347if (get_option('hack_file')) {
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000348 if (file_exists(ABSPATH . 'my-hacks.php'))
349 require(ABSPATH . 'my-hacks.php');
thatcher1419f362006-01-17 23:56:12 +0000350}
351
bdashe1974712007-06-04 09:41:09 +0000352if ( get_option('active_plugins') ) {
353 $current_plugins = get_option('active_plugins');
thatcher1419f362006-01-17 23:56:12 +0000354 if ( is_array($current_plugins) ) {
355 foreach ($current_plugins as $plugin) {
bdashe1974712007-06-04 09:41:09 +0000356 if ('' != $plugin && file_exists(ABSPATH . PLUGINDIR . '/' . $plugin))
357 include_once(ABSPATH . PLUGINDIR . '/' . $plugin);
thatcher1419f362006-01-17 23:56:12 +0000358 }
359 }
360}
361
bdashe1974712007-06-04 09:41:09 +0000362require (ABSPATH . WPINC . '/pluggable.php');
thatcher1419f362006-01-17 23:56:12 +0000363
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000364/*
365 * In most cases the default internal encoding is latin1, which is of no use,
366 * since we want to use the mb_ functions for utf-8 strings
367 */
368if (function_exists('mb_internal_encoding')) {
369 if (!@mb_internal_encoding(get_option('blog_charset')))
370 mb_internal_encoding('UTF-8');
371}
372
373
thatcher1419f362006-01-17 23:56:12 +0000374if ( defined('WP_CACHE') && function_exists('wp_cache_postload') )
375 wp_cache_postload();
376
377do_action('plugins_loaded');
378
bdashe1974712007-06-04 09:41:09 +0000379// If already slashed, strip.
380if ( get_magic_quotes_gpc() ) {
381 $_GET = stripslashes_deep($_GET );
382 $_POST = stripslashes_deep($_POST );
383 $_COOKIE = stripslashes_deep($_COOKIE);
384}
385
386// Escape with wpdb.
387$_GET = add_magic_quotes($_GET );
388$_POST = add_magic_quotes($_POST );
389$_COOKIE = add_magic_quotes($_COOKIE);
390$_SERVER = add_magic_quotes($_SERVER);
391
392do_action('sanitize_comment_cookies');
393
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000394/**
395 * WordPress Query object
396 * @global object $wp_the_query
397 * @since 2.0.0
398 */
bdashe1974712007-06-04 09:41:09 +0000399$wp_the_query =& new WP_Query();
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000400
401/**
402 * Holds the reference to @see $wp_the_query
403 * Use this global for WordPress queries
404 * @global object $wp_query
405 * @since 1.5.0
406 */
bdashe1974712007-06-04 09:41:09 +0000407$wp_query =& $wp_the_query;
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000408
409/**
410 * Holds the WordPress Rewrite object for creating pretty URLs
411 * @global object $wp_rewrite
412 * @since 1.5.0
413 */
bdashe1974712007-06-04 09:41:09 +0000414$wp_rewrite =& new WP_Rewrite();
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000415
416/**
417 * WordPress Object
418 * @global object $wp
419 * @since 2.0.0
420 */
bdashe1974712007-06-04 09:41:09 +0000421$wp =& new WP();
422
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000423
424/**
425 * Web Path to the current active template directory
426 * @since 1.5
427 */
thatcher1419f362006-01-17 23:56:12 +0000428define('TEMPLATEPATH', get_template_directory());
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000429
430/**
431 * Web Path to the current active template stylesheet directory
432 * @since 2.1
433 */
bdashe1974712007-06-04 09:41:09 +0000434define('STYLESHEETPATH', get_stylesheet_directory());
thatcher1419f362006-01-17 23:56:12 +0000435
436// Load the default text localization domain.
437load_default_textdomain();
438
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000439/**
440 * The locale of the blog
441 * @since 1.5.0
442 */
bdashe1974712007-06-04 09:41:09 +0000443$locale = get_locale();
444$locale_file = ABSPATH . LANGDIR . "/$locale.php";
445if ( is_readable($locale_file) )
446 require_once($locale_file);
447
thatcher1419f362006-01-17 23:56:12 +0000448// Pull in locale data after loading text domain.
449require_once(ABSPATH . WPINC . '/locale.php');
450
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000451/**
452 * WordPress Locale object for loading locale domain date and various strings.
453 * @global object $wp_locale
454 * @since 2.1.0
455 */
bdashe1974712007-06-04 09:41:09 +0000456$wp_locale =& new WP_Locale();
457
458// Load functions for active theme.
459if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
460 include(STYLESHEETPATH . '/functions.php');
461if ( file_exists(TEMPLATEPATH . '/functions.php') )
462 include(TEMPLATEPATH . '/functions.php');
thatcher1419f362006-01-17 23:56:12 +0000463
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000464/**
465 * shutdown_action_hook() - Runs just before PHP shuts down execution.
466 *
467 * @access private
468 * @since 1.2
469 */
thatcher1419f362006-01-17 23:56:12 +0000470function shutdown_action_hook() {
471 do_action('shutdown');
bdashe1974712007-06-04 09:41:09 +0000472 wp_cache_close();
thatcher1419f362006-01-17 23:56:12 +0000473}
474register_shutdown_function('shutdown_action_hook');
475
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000476$wp->init(); // Sets up current user.
477
bdashe1974712007-06-04 09:41:09 +0000478// Everything is loaded and initialized.
thatcher1419f362006-01-17 23:56:12 +0000479do_action('init');
bdashe1974712007-06-04 09:41:09 +0000480
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000481?>