【WordPress】define( ‘WP_USE_THEMES’, true );

<?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
 */
define( 'WP_USE_THEMES', true );

/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';

这段 PHP 代码是 WordPress 应用的入口点。它通常位于 WordPress 安装根目录的 接下来,定义了一个名为 总的来说,这段代码设置并加载了 WordPress 环境和活动主题,准备了生成 WordPress 页面所需的一切。

发表评论