WordPress 技巧:加载最小化的 WordPress

如果你使用 WordPress 做 PHP 框架,可以通过设置常量 SHORTINIT 为true,来加载最小化的 WordPress,这样 WordPress 不会加载 WordPress 主题和插件,只是设置好 PHP 环境这些初始化的操作,然后加载下面这些文件:

require( ABSPATH . WPINC . '/compat.php' );
require( ABSPATH . WPINC . '/class-wp-list-util.php' );
require( ABSPATH . WPINC . '/functions.php' );
require( ABSPATH . WPINC . '/class-wp-matchesmapregex.php' );
require( ABSPATH . WPINC . '/class-wp.php' );
require( ABSPATH . WPINC . '/class-wp-error.php' );
require( ABSPATH . WPINC . '/pomo/mo.php' );
require( ABSPATH . WPINC . '/class-phpass.php' );

然后加载缓存处理函数和数据库操作函数。

具体可以到wp-settings.php围观一下。

另外多提一句:wp-settings.php这个文件在WP整个环节是非常重要的,认真看看!会对WP开发理解加深很多!!!


©我爱水煮鱼,本站推荐使用的主机:阿里云,国外主机建议使用BlueHost

本站长期承接 WordPress 优化建站业务,请联系微信:「chenduopapa」。