我是wordpress的新手,我在wordpress中建立了一个网站,但加载时间太长,你能告诉我该如何提高性能,
我已经安装了缓存插件。但没有太大的改进。
答案 0 :(得分:0)
答案 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缩小。并且还会指示您优化图像。
这些所有优化的内容都是谷歌自己提供的,测试完成后。使用这些内容,你很好。