wordpress优化记录

  • A+
所属分类:wordpress学习
本文信息本文由方法SEO顾问发表于2017-06-2217:50:05,共 619 字,转载请注明:wordpress优化记录_【方法SEO顾问】

1、系统环境:CentOS6.8 64位+lnmp1.4,VPS配置不高的话(1G内存以内)直接默认安装LNMP就行,配置高的话php/mysql都选最新版本

2、如果主题支持PHP7的话,一定要安装PHP7,速度提升明显

3、安装两个PHP扩展,Opcache(PHP缓存)、Redis(数据库缓存)

4、调整php-fpm,参考https://seofangfa.com/other-note/php-fpm.html

5、不必要的插件全禁用,必备的有Redis Object CacheWP Super Cache

6、给页面加上系统消耗信息显示,直观看优化效果

下面这个是放到functions.php

//显示页面查询次数、加载时间和内存占用
function performance( $visible = false ) 
{
	$stat = sprintf(  '%d queries in %.3f seconds, using %.2fMB memory',
		get_num_queries(),
		timer_stop( 0, 3 ),
		memory_get_peak_usage() / 1024 / 1024
	);
	echo $visible ? $stat : "<!-- {$stat} -->" ;
}

下面这个放到footer.php的</html>之后

<?php if(function_exists('performance')) performance(true) ;?>

  • 版权声明:除非注明,本博客均为北京SEO方法的原创文章,转载或引用请以超链接形式标明本文地址,否则会在SEO圈内公开此种不尊重版权的行为,谢谢合作!本文地址:https://seofangfa.com/wordpress-study/wordpress-youhua.html
  • 转载请注明:wordpress优化记录_ 【方法SEO顾问】

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: