定制wordpress
1.删除多余的主题和语言包文件
2.取消谷歌字体:在wp-content/languages/zh_CN.php
文件最后加入以下代码
/*
* remove google font
*/
function mogublog_remove_google_font() {
wp_deregister_style( 'open-sans' );
wp_register_style( 'open-sans', false );
wp_enqueue_style('open-sans', '');
}
add_action( 'init', 'mogublog_remove_google_font' );
3.删除多余插件,添加需要的插件
4.修改主题,取消谷歌字体
5.修改配置文件wp-config-sample.php
,添加以下代码:
/* 禁止历史版本功能 */
// define('WP_POST_REVISIONS', false);
/* 自动保存草稿时间 */
// define('AUTOSAVE_INTERVAL', 3600);
/* 关闭自动更新 */
// define('AUTOMATIC_UPDATER_DISABLED', true);
/* 开启缓存 */
// define('WP_CACHE', true);
6.添加高级缓存插件