问题
My WordPress website is opening too slow,
I am using woocomerce, flipbook, ajax event calendar , Email newsletter , adrotate , and some other plugin.
Theme Used : Nictitate ( FREE VERSION )
I don't know why it's so slow.
I have installed W3cahce and Cloudflare to attempt to improve the speed of my website but it is still very slow.
Is it a server issue or something else?
回答1:
Well there are many factors that as affecting your website performance..
If you are not aware of Google Pagespeed, you can take a look at detailed analysis of your website.
You are loading many javascripts on pageload, you can decrease it by implementing something like lazy loading or combining javascripts.
Same applies with all the CSS stylesheets, Although they are not blocking rendering, they do consume one request each.
You have three images of size 1.2mb each.. which is huge compared to web standards, try reducing them.. Use www.kraken.io like services to optimize images.
You have 116 requests which can be reduced..
Detailed analysis on : http://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.jni.co.in%2F&tab=desktop
回答2:
This is link Debugging in WordPress which should help you debug if there is any issue.
For enabling debugging your code should have:
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
Or you could possibly try this in your wp-config.php
define('WP_DEBUG', false);
@ini_set( 'error_reporting', E_ALL ^ E_NOTICE );
回答3:
You can try combining your CSS files to reduce the number of requests. Moreover, you can optimize these CSS files to achieve better performance. proCSSor is a useful tool to do that.
来源:https://stackoverflow.com/questions/25196524/my-wordpress-website-is-opening-too-slow