<?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 * * [日本語] * WordPressアプリケーションの入り口です。このファイルは何もしません。 * しかし処理をするためのwp-blog-header.phpを読み込みます。 * そしてWordPressでテーマを読み込むかの設定ができます。 */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool * * [日本語] * WordPressがWordPressテーマを読み込み出力するかを設定します。 * [補足] * 定数WP_USE_THEMESを定義しtrueの場合に原則テーマを使います。 * 例外:robots 、feed 、 trackback */ define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template * [日本語] * WordPress環境とテンプレートを読み込みます。 */ require('./wp-blog-header.php');