長いので、いくつかに分けて。
冒頭大事
/** * Used to set up and fix common variables and include * the WordPress procedural and class library. * * Allows for some configuration in wp-config.php (see default-constants.php) */
コメント部分訳。
WP全体で使う系の変数をセットアップして、処理やクラス的なライブラリをインクルードします。
ファイル読み込み
/** * Stores the location of the WordPress directory of functions, classes, and core content. */ define( 'WPINC', 'wp-includes' ); // Include files required for initialization. require( ABSPATH . WPINC . '/load.php' ); require( ABSPATH . WPINC . '/default-constants.php' ); require( ABSPATH . WPINC . '/version.php' );
定数WPINCを定義して、ルートパス/wp-includes/にある3つのファイルを読み込む。
- load.php
- サーバやMySQL、ファビコン、メンテンナンス、時間、デバッグモード、何語か、wpdb、必須pluginなどの関数を定義しているみたい。
- default-constants.php
- $blog_id(複数ブログモードで使用)、クッキー、SSL、テンプレートパスなどの定数を定義してるみたい。
- version.php
- WPのバージョン情報、必要なphp/MySQLのバージョン、何語かについてなどを、$wp_version=’3.0.1’みたいに代入してる。
定数、変数に変なものがないかチェックし、サーバによるブレをなくす
// Set initial default constants including WP_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE. wp_initial_constants( ); // Disable magic quotes at runtime. Magic quotes are added using wpdb later in wp-settings.php. set_magic_quotes_runtime( 0 ); @ini_set( 'magic_quotes_sybase', 0 ); // Set default timezone in PHP 5. if ( function_exists( 'date_default_timezone_set' ) ) date_default_timezone_set( 'UTC' ); // Turn register_globals off. wp_unregister_GLOBALS(); // Ensure these global variables do not exist so they do not interfere with WordPress. unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate ); // Standardize $_SERVER variables across setups. wp_fix_server_vars();
- WP_MEMORY_LIMITなどのデフォルト定数をセット
- magic quotes(フォームに入力されたシングルクォートをエスケープする機能で、レンタルサーバによって、オンになっているのを)をオフにする
- タイムゾーンのセット
- register_globalsのPHPバージョンによる揺れをなくす
- $wp_cache_lastcommentmodifiedなどに何かの拍子に何かが代入されてるとまずいので、アンセット
- $_SERVERは、サーバ関連の情報が格納されている配列なんだけど、サーバによって揺れがあるので直す
もろもろチェックしておこう
// Check for the required PHP version and for the MySQL extension or a database drop-in. wp_check_php_mysql_versions(); // Check if we have recieved a request due to missing favicon.ico wp_favicon_request(); // Check if we're in maintenance mode. wp_maintenance(); // Start loading timer. timer_start(); // Check if we're in WP_DEBUG mode. wp_debug_mode();
- PHP、MySQLのバージョンを知る
- ファビコンチェック
- メンテンナンスモードになってる?
- タイマースタート
- WP_DEBUGモードになってる?
ディレクトリ設定、PHPの関数やクラスを読み込み、DB関連
// For an advanced caching plugin to use. Uses a static drop-in because you would only want one. if ( WP_CACHE ) WP_DEBUG ? include( WP_CONTENT_DIR . '/advanced-cache.php' ) : @include( WP_CONTENT_DIR . '/advanced-cache.php' ); // Define WP_LANG_DIR if not set. wp_set_lang_dir(); // Load early WordPress files. require( ABSPATH . WPINC . '/compat.php' ); require( ABSPATH . WPINC . '/functions.php' ); require( ABSPATH . WPINC . '/classes.php' ); // Include the wpdb class, or a db.php database drop-in if present. require_wp_db(); // Set the database table prefix and the format specifiers for database table columns. wp_set_wpdb_vars(); // Start the WordPress object cache, or an external object cache if the drop-in is present. wp_start_object_cache();
- キャッシュ用のプラグインを使うときに必要な設定
- 日本語とかのファイルのディレクトリをセット
- 3つのファイル(後述)を読み込む
- wpdb(大事そうな何か)の設定の何か
- DBの接頭辞など設定
- オブジェクトキャッシュ(?)の設定
以下、読み込まれた3つのファイルについて。
- compat.php
- PHPがバージョンアップしたときに、無くなってしまった関数をここで定義しちゃう
- functions.php
- すごくたくさんの関数を定義している。別途勉強する。冒頭のコメント欄に、”Main WordPress API”って書いてある
- classes.php
- すごくたくさんのクラスを定義している。別途勉強する。冒頭のコメント欄に、”Holds Most of the WordPress classes.”って書いてある。
プラグインフック、マルチサイトなど、WPの動きのベースを更に整える
// Load early WordPress files. require( ABSPATH . WPINC . '/plugin.php' ); require( ABSPATH . WPINC . '/default-filters.php' ); require( ABSPATH . WPINC . '/pomo/mo.php' ); // Initialize multisite if enabled. if ( is_multisite() ) { require( ABSPATH . WPINC . '/ms-blogs.php' ); require( ABSPATH . WPINC . '/ms-settings.php' ); } elseif ( ! defined( 'MULTISITE' ) ) { define( 'MULTISITE', false ); } // Stop most of WordPress from being loaded if we just want the basics. if ( SHORTINIT ) return false; // Load the l18n library. require( ABSPATH . WPINC . '/l10n.php' ); // Run the installer if WordPress is not installed. wp_not_installed();
- 3つのファイルを読み込み(後述)
- マルチサイトならそれ用の設定をするphpファイルを読み込み
- SHORTINITがtrueだとWPのほぼ全部が止まるらしい。例えばユーザがログインしているかいどうかを判断したいだけの時は、WP全部が動かなくても、一部だけ動いてくれればいいし、その方が負荷も少ないしみたいなときに使うようだ。
- L18Nは言語の何かのようだ
- WPがインストールされてなければしてくださいな。
- plugin.php
- プラグインを動かすためのフックについての関数が定義されているようだ。filterの文字も見える
- default-filters.php
- フィルターとフックは同じ意味っぽい。
- mo.php
- 言語関連
wp-includesフォルダ内のphpファイルをガンガン読み込む
// Load most of WordPress. require( ABSPATH . WPINC . '/formatting.php' ); require( ABSPATH . WPINC . '/capabilities.php' ); require( ABSPATH . WPINC . '/query.php' ); require( ABSPATH . WPINC . '/theme.php' ); require( ABSPATH . WPINC . '/user.php' ); require( ABSPATH . WPINC . '/meta.php' ); require( ABSPATH . WPINC . '/general-template.php' ); require( ABSPATH . WPINC . '/link-template.php' ); require( ABSPATH . WPINC . '/author-template.php' ); require( ABSPATH . WPINC . '/post.php' ); require( ABSPATH . WPINC . '/post-template.php' ); require( ABSPATH . WPINC . '/category.php' ); require( ABSPATH . WPINC . '/category-template.php' ); require( ABSPATH . WPINC . '/comment.php' ); require( ABSPATH . WPINC . '/comment-template.php' ); require( ABSPATH . WPINC . '/rewrite.php' ); require( ABSPATH . WPINC . '/feed.php' ); require( ABSPATH . WPINC . '/bookmark.php' ); require( ABSPATH . WPINC . '/bookmark-template.php' ); require( ABSPATH . WPINC . '/kses.php' ); require( ABSPATH . WPINC . '/cron.php' ); require( ABSPATH . WPINC . '/deprecated.php' ); require( ABSPATH . WPINC . '/script-loader.php' ); require( ABSPATH . WPINC . '/taxonomy.php' ); require( ABSPATH . WPINC . '/update.php' ); require( ABSPATH . WPINC . '/canonical.php' ); require( ABSPATH . WPINC . '/shortcodes.php' ); require( ABSPATH . WPINC . '/media.php' ); require( ABSPATH . WPINC . '/http.php' ); require( ABSPATH . WPINC . '/class-http.php' ); require( ABSPATH . WPINC . '/widgets.php' ); require( ABSPATH . WPINC . '/nav-menu.php' ); require( ABSPATH . WPINC . '/nav-menu-template.php' ); // Load multisite-specific files. if ( is_multisite() ) { require( ABSPATH . WPINC . '/ms-functions.php' ); require( ABSPATH . WPINC . '/ms-default-filters.php' ); require( ABSPATH . WPINC . '/ms-deprecated.php' ); }
多いので、今度これらのファイルを一個ずつ読む。
APIに依拠する定数を定義
// Define constants that rely on the API to obtain the default value. // Define must-use plugin directory constants, which may be overridden in the sunrise.php drop-in. wp_plugin_directory_constants( ); // Load must-use plugins. foreach ( wp_get_mu_plugins() as $mu_plugin ) { include_once( $mu_plugin ); } unset( $mu_plugin ); do_action( 'muplugins_loaded' ); if ( is_multisite() ) ms_cookie_constants( ); // Define constants after multisite is loaded. Cookie-related constants may be overridden in ms_network_cookies(). wp_cookie_constants( ); // Define and enforce our SSL constants wp_ssl_constants( ); // Create common globals. require( ABSPATH . WPINC . '/vars.php' );
- 必須プラグインの居場所設定
- 必須プラグインを読み込み
- マルチサイトならさらに色々やらないと
- SSL定数も決める
- グローバル変数も。vars.phpは、グローバル変数置き場。$pagenow、$iswinIEなどのよく使うものを定義している
プラグイン周りの設定を更に進める
// Make taxonomies and posts available to plugins and themes. // @plugin authors: warning: these get registered again on the init hook. create_initial_taxonomies(); create_initial_post_types(); // Load active plugins. foreach ( wp_get_active_and_valid_plugins() as $plugin ) include_once( $plugin ); unset( $plugin ); // Load pluggable functions. require( ABSPATH . WPINC . '/pluggable.php' ); require( ABSPATH . WPINC . '/pluggable-deprecated.php' ); // Set internal encoding. wp_set_internal_encoding(); // Run wp_cache_postload() if object cache is enabled and the function exists. if ( WP_CACHE && function_exists( 'wp_cache_postload' ) ) wp_cache_postload(); do_action( 'plugins_loaded' ); // Define constants which affect functionality if not already defined. wp_functionality_constants( ); // Add magic quotes and set up $_REQUEST ( $_GET + $_POST ) wp_magic_quotes(); do_action( 'sanitize_comment_cookies' );
- タクソノミー、ポストタイプのデフォルト設定
- 有効化されたプラグインを読み込む
- 2つのプラグイン関連ファイルを読み込み
- 内部文字エンコーディング(OSなどによるブレをなくすとか?)の設定
- フック発行
- 残りの定数も決めとく
- GET/POST/REQUESTのマジッククォートをセット+フック発行
以下、読み込まれた2つのphpファイル。
- pluggable.php
- プラグインによって書き換えられてもいい関数はここで定義している
- pluggable-deprecated.php
- 非推奨の過去のWP関数はここにまとめられている
その他もろもろ
- 古い変数名を新しくしたり
- テーマにくっついてくる関数や定数を適用させたり
- ここまででWordPressは大分動いているのでアクションフックを発行したり
している。
/** * WordPress Query object * @global object $wp_the_query */ $wp_the_query =& new WP_Query(); /** * Holds the reference to @see $wp_the_query * Use this global for WordPress queries * @global object $wp_query */ $wp_query =& $wp_the_query; /** * Holds the WordPress Rewrite object for creating pretty URLs * @global object $wp_rewrite */ $wp_rewrite =& new WP_Rewrite(); /** * WordPress Object * @global object $wp */ $wp =& new WP(); /** * WordPress Widget Factory Object * @global object $wp_widget_factory */ $wp_widget_factory =& new WP_Widget_Factory(); do_action( 'setup_theme' ); // Define the template related constants. wp_templating_constants( ); // Load the default text localization domain. load_default_textdomain(); // Find the blog locale. $locale = get_locale(); $locale_file = WP_LANG_DIR . "/$locale.php"; if ( is_readable( $locale_file ) ) require( $locale_file ); unset($locale_file); // Pull in locale data after loading text domain. require( ABSPATH . WPINC . '/locale.php' ); /** * WordPress Locale object for loading locale domain date and various strings. * @global object $wp_locale */ $wp_locale =& new WP_Locale(); // Load the functions for the active theme, for both parent and child theme if applicable. if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) ) include( STYLESHEETPATH . '/functions.php' ); if ( file_exists( TEMPLATEPATH . '/functions.php' ) ) include( TEMPLATEPATH . '/functions.php' ); do_action( 'after_setup_theme' ); // Load any template functions the theme supports. require_if_theme_supports( 'post-thumbnails', ABSPATH . WPINC . '/post-thumbnail-template.php' ); register_shutdown_function( 'shutdown_action_hook' ); // Set up current user. $wp->init(); /** * Most of WP is loaded at this stage, and the user is authenticated. WP continues * to load on the init hook that follows (e.g. widgets), and many plugins instantiate * themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.). * * If you wish to plug an action once WP is loaded, use the wp_loaded hook below. */ do_action( 'init' ); // Check site status if ( is_multisite() ) { if ( true !== ( $file = ms_site_check() ) ) { require( $file ); die(); } unset($file); } /** * This hook is fired once WP, all plugins, and the theme are fully loaded and instantiated. * * AJAX requests should use wp-admin/admin-ajax.php. admin-ajax.php can handle requests for * users not logged in. */ do_action('wp_loaded');
以上です。
というか、こんだけの処理をやっても一瞬だなんて、コンピュータってなんてすごいんだろうと思った。
コメント