如何加速wordpress网站。花费太多时间来装载

时间:2016-11-03 05:53:16

标签: php wordpress

我是wordpress的新手,我在wordpress中建立了一个网站,但加载时间太长,你能告诉我该如何提高性能,

我已经安装了缓存插件。但没有太大的改进。

3 个答案:

答案 0 :(得分:0)

  1. 选择一位好主人。
  2. 从坚实的框架/主题开始。
  3. 使用有效的缓存插件。
  4. 使用内容分发网络(CDN)
  5. 优化图像(自动)
  6. 优化您的主页以快速加载。
  7. 优化您的WordPress数据库。
  8. 禁用热链接和内容泄露。
  9. 向静态资源添加过期标头
  10. 调整Gravatar图片
  11. 将LazyLoad添加到您的图片
  12. 控制存储的修订后数量
  13. 关闭pingback和引用
  14. 必要时用静态HTML替换PHP
  15. 使用CloudFlare

答案 1 :(得分:0)

安装一些图像压缩插件Compress JPEG & PNG images以优化图像并尝试在页面中使用缩略图图像。

我认为您在页面中使用全尺寸图像尝试使用小尺寸图像。

//Default WordPress
the_post_thumbnail( 'thumbnail' );     // Thumbnail (150 x 150 hard cropped)
the_post_thumbnail( 'medium' );        // Medium resolution (300 x 300 max height 300px)
the_post_thumbnail( 'medium_large' );  // Medium Large (added in WP 4.4) resolution (768 x 0 infinite height)
the_post_thumbnail( 'large' );         // Large resolution (1024 x 1024 max height 1024px)
the_post_thumbnail( 'full' );          // Full resolution (original size uploaded)

你可以把它放在你的.htaccess文件中来缓存js和Css以及图像文件

ExpiresActive On
    ExpiresByType image/jpg "access 1 year"
    ExpiresByType image/jpeg "access 1 year"
    ExpiresByType image/gif "access 1 year"
    ExpiresByType image/png "access 1 year"
    ExpiresByType text/css "access 1 month"
    ExpiresByType application/pdf "access 1 month"
    ExpiresByType application/javascript "access 1 week"
    ExpiresByType application/x-shockwave-flash "access 1 month"
    ExpiresByType image/x-icon "access 1 year"
    ExpiresDefault "access 2 days"

答案 2 :(得分:0)

使用谷歌速度测试工具测试您的网站,然后按照谷歌为您的网站提供的说明。

Google Speed Test Tool :通常工具建议css和js缩小。并且还会指示您优化图像。

这些所有优化的内容都是谷歌自己提供的,测试完成后。使用这些内容,你很好。