{"id":1108,"date":"2011-07-03T13:21:22","date_gmt":"2011-07-03T07:51:22","guid":{"rendered":"http:\/\/mohamediqbalp.wordpress.com\/2011\/07\/03\/ultimate-guide-to-make-sites-super-fast\/"},"modified":"2011-07-03T13:21:22","modified_gmt":"2011-07-03T07:51:22","slug":"ultimate-guide-to-make-sites-super-fast","status":"publish","type":"post","link":"https:\/\/venusimportexport.com\/wordpress\/index.php\/2011\/07\/03\/ultimate-guide-to-make-sites-super-fast\/","title":{"rendered":"Ultimate Guide To Make Sites Super Fast"},"content":{"rendered":"<h1>Speed Up WordPress \u2013 <br \/><\/h1>\n<h1>Ultimate Guide To Make Sites Super Fast<\/h1>\n<p>A good website should never compromise on the visitor\u2019s experience. <img decoding=\"async\" class=\"alignright size-full wp-image-1497\" title=\"Speed Up WordPress Site\" src=\"http:\/\/cdn.computingunleashed.com\/cu\/uploads\/speedupwp.jpg\" alt=\"speedupwp Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"132\" width=\"175\" \/>A Serious <a id=\"KonaLink0\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">web<\/span><\/font><\/a><br \/> publisher invests some time and resources to learn everything possible <br \/>about optimizing his website for speed. Who likes to browse through a <br \/>sluggish slow loading site? Most of the normal visitors leave the site, <br \/>unless the visitor is extremely interested in the content and related <br \/>things. More over google started considering the sites speed as a factor<br \/> in their search engine ranking logarithm. This guide will help you in <strong>reducing your sites server load, making your site faster<\/strong>.<\/p>\n<div class=\"KonaBody\">\n<p><span id=\"more-1163\"><\/span><\/p>\n<p>Remember <strong>speeding up and optimizing your wordpress site<\/strong><br \/> is not an easy process, it take a bit of time to make the changes <br \/>properly and safely. But its worth if you can spend the time. The time <br \/>taken will depend on your expertise in wordpress. Before making the <br \/>following changes my sites were taking around 11 \u2013 15 seconds to load.&nbsp; <br \/>After implementing these changes the site takes less than 5 seconds to <br \/>load.<\/p>\n<p>Before starting with any thing, first take a complete back up of your theme files and your wordpress <a id=\"KonaLink1\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">database<\/span><\/font><\/a>. Now go to <a target=\"_blank\" title=\"http:\/\/tools.pingdom.com\" href=\"http:\/\/tools.pingdom.com\/\">http:\/\/tools.pingdom.com<\/a><br \/> and enter your site url and do&nbsp; a speed test to see how long does it <br \/>take for your website to load (You do speed test at last, after <br \/>implementing the changes in this guide to know the speed gain you have <br \/>obtained). Our aim is to reduce the load time and server load to a much <br \/>lesser <a id=\"KonaLink2\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">value<\/span><\/font><\/a>.<\/p>\n<p>So lets start the Ultimate Guide To <strong>Make Your Site Super Fast<\/strong><\/p>\n<h3>1) Remove Unnecessary PHP Queries and Database Access<\/h3>\n<p>Almost<br \/> all wordpress themes are made in such a way that there is minimal user <br \/>effort in configuring them. These themes comes with some generic php <br \/>codes, which can be easily replaced after we install it in our blog. <br \/>Removing these avoidable php queries will lessen your server load and <br \/>also make your site faster.<\/p>\n<p>For this first open the <strong><em>header.php <\/em><\/strong>files located in your current themes folder. You can do this by two ways, either by going to <em>Appearence &gt; Editor from <\/em>wp dashboard or by accessing the file directly using a FTP client and opening in Notepad or Notepad++.<\/p>\n<p>You\u2019ll some thing like this in the header file.<\/p>\n<blockquote>\n<p>&lt;title&gt;<strong>&lt;?php bloginfo(\u2018name\u2019); ?&gt;<\/strong> <strong>&lt;?php bloginfo(\u2018description\u2019);?&gt;<\/strong>&lt;\/title&gt;<\/p>\n<p>&lt;link rel=\u201dstylesheet\u201d type=\u201dtext\/css\u201d media=\u201dscreen\u201d href=\u201d<strong>&lt;?php bloginfo(\u2018stylesheet_url\u2019); ?&gt;<\/strong>\u201c\/&gt;<\/p>\n<p>&lt;link rel=\u201dshorcut icon\u201d type=\u201dimage\/png\u201d href=\u201d<strong>&amp;lt?php bloginfo(\u2018template_url\u2019); ?&gt;<\/strong>\/favicon.jpg\u201d \/&gt;<\/p>\n<p>&lt;link rel=\u201dalternate\u201d type=\u201dapplication\/rss+xml\u201d title=\u201dRSS Feed\u201d href=\u201d<strong>&lt;?php bloginfo(\u2018rss_url\u2019); ?&gt;<\/strong>\u201d \/&gt;<\/p>\n<\/blockquote>\n<p>The<br \/> bolded items in this code is the php code. These five php commands are <br \/>executed each time, when your site gets loaded in the browser. Since we <br \/>dont want the theme to be portable anymore, we can replace these php <br \/>queries by corresponding html code. That\u2019s about 20 Times Faster Speed.<\/p>\n<p>To do this open your site in any browser for eg in chrome and press <em>Ctrl + U <\/em>or select V<em>iew Source<\/em> From the menu. With reference to the above example, you will see the source code of the site as<\/p>\n<blockquote>\n<p>&lt;title&gt;Computing Unleashed&lt;\/title&gt;<\/p>\n<p>&lt;link<br \/> rel=\u201dstylesheet\u201d type=\u201dtext\/css\u201d media=\u201dscreen\u201d <br \/>href=\u201dhttp:\/\/iqsoft.co.in\/wp-content\/themes\/amalroy\/style.css\u201d\/&gt;<\/p>\n<p>&lt;link<br \/> rel=\u201dshortcut icon\u201d <br \/>href=\u201dhttps:\/\/venusimportexport.com\/wordpress\/wp-content\/themes\/amalroy\/favicon.png\u201d<br \/> type=\u201dimage\/png\u201d \/&gt;<\/p>\n<p>&lt;link rel=\u201dalternate\u201d type=\u201dapplication\/rss+xml\u201d title=\u201dRSS Feed\u201d href=\u201diqsoft.co.in\/feed\/rss\/\u201d \/&gt;<\/p>\n<\/blockquote>\n<p>Now you might have got an idea about this. Now just copy these codes and replace it in <em>header.php file <\/em>and save the file and you are done. You can now check for similar queries in footer.php, sidebar.php etc. and replace them.<\/p>\n<h3>2) Remove Inactive Plugins<\/h3>\n<p>Most<br \/> of us are curious to try out new wordpress plugins.We deactivate them <br \/>if we are not happy with the results. There is a tendency for us to <br \/>leave those deactivated plugins in the plugin directory. Its better to <br \/>remove all those inactive plugins that you dont use. Also check for any <br \/>plugins that you have activated but not using, these can eat up <br \/>resources simply. So make the plugin directory clean and tidy. If you <br \/>feel that you might want to use those deactivated plugin later on, then <br \/>make a text document in the plugin directory with the list of plugins <br \/>you need later and you can safely delete those plugins which are not <br \/>needed now.<\/p>\n<h3>3) Using a&nbsp; FREE CDN (Content Delivery Network)<\/h3>\n<p><img decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/Content-Delivery-Network-To-Speed-up-Your-Site1.jpg\" style=\"display:block;\" class=\"size-full wp-image-1167 alignright\" title=\"Using Content Delivery Network To Speed up Your Site\" alt=\"Content Delivery Network To Speed up Your Site1 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"150\" width=\"220\" \/>A content delivery network is used by almost all popular websites  like google, twitter, mashable etc. A <a id=\"KonaLink3\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">content <\/span><span class=\"kLink\" style=\"color:#000099!important;font-fa\nmily:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">delivery<\/span><\/font><\/a><br \/> network (CDN) is a  collection of web servers distributed across <br \/>multiple locations to  deliver content more efficiently to users. The <br \/>user\u2019s proximity to your  web server has an impact on response times. <br \/>Deploying your content  across multiple, geographically dispersed <a id=\"KonaLink4\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">servers<\/span><\/font><\/a> will make your pages  load faster from the user\u2019s perspective.<\/p>\n<p>Using<br \/> a CDN network will improve your sites response time to a great  extend.<br \/> But normal users find it difficult to afford a CDN service. But  there <br \/>is a free alternative.<\/p>\n<p>CoralCDN allows us to take full advantage <br \/>of a powerful CDN without  spending a dime. How to use it? Well, <br \/>basically, just append `.nyud.net`  to the hostname of any URL, and that<br \/> URL will be handled by Coral.<\/p>\n<p style=\"text-align:center;\"><img fetchpriority=\"high\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/Content-Delivery-Network-To-Speed-up-Your-Site2.jpg\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1169\" title=\"Content Delivery Network To Speed up WordPress\" alt=\"Content Delivery Network To Speed up Your Site2 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"278\" width=\"400\" \/><\/p>\n<p>With the <a target=\"_blank\" href=\"http:\/\/wordpress.org\/extend\/plugins\/free-cdn\/\"><strong>Free  CDN<\/strong><\/a><br \/> this job can be done easily. All you need to do is just  install the <br \/>plugin and activate it. It will rewrite the JavaScripts,  CSS, images <br \/>etc. for you. PLus it also&nbsp; has option to exclude or include  the files <br \/>your specify. It can be JavaScript\u2019s, CSS or specific pages.<\/p>\n<h3>4) Keep Your WordPress Version Up To Date<\/h3>\n<p>With the release of new versions, wordpress keeps on improving on the  whole. On each update wordpress <a id=\"KonaLink5\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">developers<\/span><\/font><\/a><br \/> put their effort in making  wordpress faster and safer. So its very <br \/>necessary that you need to  upgrade to the latest wordpress version to <br \/>get the performance  improvements and new features.<\/p>\n<h3>5) Compress the CSS Code<\/h3>\n<p>Compressing<br \/> your CSS Code will make it\u2019s size small and your browser can render it <br \/>faster and that results in faster page load times. Compressing the CSS <br \/>can be done in two ways. Either by doing it manually by using the <br \/>service <a target=\"_blank\" title=\"Compress CSS Codes\" href=\"http:\/\/www.cssdrive.com\/index.php\/main\/csscompressor\/\"><strong>CSS Drive<\/strong><\/a>. You have to manually copy-paste your css code from the <em>style.css file<\/em> in their website and you will get the compressed version of it which you can paste back on the <em>style.css file<\/em>.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/CSS-Compress-to-Speed-Up-Site1.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1171\" title=\"CSS Compress to Speed Up Site\" alt=\"CSS Compress to Speed Up Site1 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"269\" width=\"350\" \/><\/p>\n<p>But if you make changes to your css code at times, then its better to use the <a target=\"_blank\" href=\"http:\/\/wordpress.org\/extend\/plugins\/wp-css\/\"><strong>WP CSS<\/strong><\/a><br \/> plugin. Wp css plugin will automatically remove the white spaces and <br \/>compress your css files. Plus you will also have other options to set <br \/>expiry time for the files.<\/p>\n<h3>6) Optimize the WordPress Database<\/h3>\n<p>Just like the hard disks the wordpress database also gets fragmented. So optimizing the wordpress database too can <a id=\"KonaLink6\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">speed <\/span><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">up<\/span><\/font><\/a> your site.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/optimizing-the-wodpress-database-to-make-it-faster.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1172\" title=\"optimizing the wodpress database to make it faster\" alt=\"optimizing the wodpress database to make it faster Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"192\" width=\"500\" \/><\/p>\n<ul>\n<li>For optimizing the wordpress database of your site, visit the cpanel of your <a id=\"KonaLink7\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">hosting <\/span><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">provider<\/span><\/font><\/a>.<\/li>\n<li>Use phpMyAdmin to optimize your database: Log in to phpMyAdmin, select all the tables, and then <em><strong><a id=\"KonaLink8\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">repair<\/span><\/font><\/a><\/strong><\/em> and <em><strong>optimize<\/strong><\/em>.<\/li>\n<\/ul>\n<h3>7) Compress &amp; Combine Javascript Files<\/h3>\n<p>Like the CSS files the javascripts in your template is also a major reason for speed loss.<\/p>\n<p>Try to reduce the javascripts as much as possible.<\/p>\n<p>Javascript Compression Services<\/p>\n<ul>\n<li><a target=\"_blank\" href=\"http:\/\/javascriptcompressor.com\/\">Javascript Compressor<\/a><\/li>\n<li><a target=\"_blank\" href=\"http:\/\/www.xmlforasp.net\/JSCompressor.aspx\">JS Compressor<\/a><\/li>\n<\/ul>\n<h3>8 ) Reduce Image Sizes<\/h3>\n<p>Posts<br \/> become lively when images are added. But using high resolution images <br \/>on your site will put a high load on the server and this is one of the <br \/>reasons why some sites go down when a digg front page is reached.<\/p>\n<p style=\"text-align:center;\">The images can be compressed to a level without much loss in quality.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/image-optimization-using-smushit-to-speed-up-wordpress.jpg\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1173\" t\nitle=\"image optimization using smushit to speed up wordpress\" alt=\"image optimization using smushit to speed up wordpress Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"204\" width=\"298\" \/><\/p>\n<p>You can use the <a target=\"_blank\" href=\"http:\/\/wordpress.org\/extend\/plugins\/wp-smushit\/\"><strong>WP Smush.it<\/strong><\/a> plugin for wordpress to compress the images. It will compress the images to a good extend and your site will load faster now.<\/p>\n<h3>9) Disable Hot Linking<\/h3>\n<p>Stealing<br \/> our websites bandwidth can be referred to as Hot linking. This happens <br \/>when others link your sites images in their articles and this puts load <br \/>on your server. This not a big issue if one or two sites directly link <br \/>your images, but if multiple sites uses this then it might create a <br \/>headache.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/using-hotlink-protection-to-save-bandwidth-and-speed-up.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1174\" title=\"using hotlink protection to save bandwidth and speed up\" alt=\"using hotlink protection to save bandwidth and speed up Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"115\" width=\"400\" \/><\/p>\n<p>We can easily prevent the hotlinking by implementing a small code in the <strong><em>.htaccess <\/em><\/strong>file.<\/p>\n<blockquote>\n<p>#disable hotlinking of images with forbidden or custom image option<\/p>\n<p>RewriteEngine on<\/p>\n<p>RewriteCond %{HTTP_REFERER} !^$<\/p>\n<p>RewriteCond %{HTTP_REFERER} !^http(s)?:\/\/(www.)?iqsoft.co.in [NC]<\/p>\n<p>RewriteCond %{HTTP_REFERER} !^http(s)?:\/\/(www.)?google.com [NC]<\/p>\n<p>RewriteCond %{HTTP_REFERER} !^http(s)?:\/\/(www.)?feeds2.feedburner.com\/iqsoft[NC]<\/p>\n<p>RewriteRule .(jpg|jpeg|png|gif)$ \u2013 [NC,F,L]<\/p>\n<\/blockquote>\n<p>Copy-paste the above code in your <strong><em>.htaccess<\/em><\/strong> file in the wordpress root directory and then save it. <em><strong>!Important \u2013 <\/strong>Replace my sites url and feed with yours<\/em>.<\/p>\n<h3>10) The WordPress Super Cache Plugin<\/h3>\n<p>The<br \/> super cache plugin is a must have plugin that cache\u2019s the mostly <br \/>visited pages on your site and make it available the next visitor <br \/>immediately. The plugin generates html files which are served without <br \/>ever invoking a single line of PHP.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/supwwcpn.jpg\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1175\" title=\"Speed up WordPress site using Super Cache Plugin\" alt=\"supwwcpn Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"286\" width=\"450\" \/><\/p>\n<p><a target=\"_blank\" title=\"Wordpress Super Cache Plugin\" href=\"http:\/\/ocaoimh.ie\/wp-super-cache\/\">Download WordPress Super Cache Plugin<\/a><\/p>\n<p>But<br \/> if you have good experience with plugins and wordpress then I\u2019d <br \/>recommend the w3 Total Cache Plugin which tops any of the cache plugin <br \/>and is my personal favorite. If you could properly configure the w3 <br \/>total cache plugin then its the best. It has much better compressions <br \/>and caching options than the super cache plugin and definitely save your<br \/> websites bandwidth and improve your sites speed. Whats more it has even<br \/> got cdn support. This will help you avoid other plugins if you\u2019ve got <br \/>a&nbsp; cdn account or an amazon s3 account. This plugin also has separate <br \/>caching options for shared hosting and (vps, <a id=\"KonaLink9\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">dedicated <\/span><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">hostings<\/span><\/font><\/a>). This makes it so special.<\/p>\n<p style=\"text-align:center;\"><img decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/cu\/uploads\/w3totalcacheplugintospeedupwp.jpg\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1498\" title=\"w3 total cache plugin\" alt=\"w3totalcacheplugintospeedupwp Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" \/><\/p>\n<p><a target=\"_blank\" href=\"http:\/\/wordpress.org\/extend\/plugins\/w3-total-cache\/\">Download W3Total Cache Plugin<\/a><\/p>\n<h3>11) Combining Javascripts and CSS Files with PHP Speedy<\/h3>\n<p>As said earlier, minimizing the HTTP requests can speed up the site greatly and the<strong> php speedy plugin<\/strong><br \/> will help you further by combining all the javascripts into one single <br \/>file and all css files into a single one. Therefore in total the there <br \/>will only be two files that are being requested.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/php-speedy-minizing-the-http-requests-to-speed-up-the-site-1.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1177\" title=\"php speedy - minizing the http requests to speed up the site 1\" alt=\"php speedy minizing the http requests to speed up the site 1 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"293\" width=\"400\" \/><\/p>\n<p>The results after using the php speedy plugin.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/php-speedy-minizing-the-http-requests-to-speed-up-the-site-2.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1176\" title=\"php speedy - minizing the http requests to speed up the site 2\" alt=\"php speedy minizing the http requests to speed up the site 2 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"131\" width=\"400\" \/><\/p>\n<p><strong><a target=\"_blank\" title=\"Download Php Speedy from developers website\" href=\"http:\/\/aciddrop.com\/2008\/12\/11\/php-speedy-wp-05-now-works-with-wordpress-27\/\">Download PHP Speedy Plugin For WordPress<\/a><\/strong><\/p>\n<h3>12) Preloading the Page Contents<\/h3>\n<p>This<br \/> is some thing that doesn\u2019t improve the performance much but it enhances<br \/> the page load by loading the page progressively. The problem with <br \/>putting style sheets near the bottom of the document is that it <br \/>prohibits progressive rendering in many browsers, including <a id=\"KonaLink10\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">Internet<\/span><\/font><\/a><br \/> Explorer. These browsers block rendering to avoid having to redraw <br \/>elements of the page if their styles change. The user is stuck viewing a<br \/> blank white page.<\/p>\n<p>So here\u2019s what you have to do. Move the Style Sheets to the header file.<\/p>\n<blockquote>\n<p>&lt;title&gt;Computing Unleashed&lt;\/title&gt;<\/p>\n<p>&lt;link<br \/> rel=\u201dstylesheet\u201d type=\u201dtext\/css\u201d media=\u201dscreen\u201d <br \/>href=\u201dhttps:\/\/venusimportexport.com\/wordpress\/wp-content\/themes\/amalroy\/style.css%E2%80%9D\/&gt;<\/p>\n<\/blockquote>\n<p>Move the css file link near the title in the <strong><em>header.php<\/em><\/strong> file.<\/p>\n<h3>13) Flushing the buffer<\/h3>\n<p>When<br \/> users request a page in your site, it can takes around 200 \u2013 500 <br \/>milliseconds for the backend server to put together the HTML page. <br \/>During this time the browser remains idle. The flush() function in php <br \/>help you in loading the partially ready html response to the browser and<br \/> it can <a id=\"KonaLink11\" class=\"kLink\" style=\"text-decoration:underline!important;position:static;font-family:inherit\n!important;font-weight:inherit!important;font-size:inherit!important;\" href=\"http:\/\/www.computingunleashed.com\/speed-up-wordpress-ultimate-guide-to-make-sites-super-fast.html#\"><font color=\"#000099\"><span class=\"kLink\" style=\"color:#000099!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important;position:static;\">start<\/span><\/font><\/a> fetching the components, while the backend server is busy with the rest of the contents.<\/p>\n<p>To inset the <em>flush() <\/em>function in your wordpress site, Open up the <em>header.php<\/em> file and find the <strong><em>&lt;\/head&gt; <\/em><\/strong>tag and insert the <strong>&lt;?php flush(); ?&gt;<\/strong><em> <\/em>function right after it. You may see the eg below.<\/p>\n<blockquote>\n<p>&lt;\/head&gt;<\/p>\n<p>&lt;?php flush(); ?&gt;<\/p>\n<p>&lt;body&gt;<\/p>\n<\/blockquote>\n<h3>14) Using CSS Sprites Technique<\/h3>\n<p>It<br \/> simply means combining all the images in the site into a single big <br \/>image containing all of them and the browser loads the single big image <br \/>and display the different images by using <em>background-position<\/em>.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/Using-CSS-sprites-to-combine-images-and-speed-up-wordpress-site1.gif\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1179\" title=\"Using CSS sprites to combine images and speed up wordpress site\" alt=\"Using CSS sprites to combine images and speed up wordpress site1 Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"357\" width=\"400\" \/><\/p>\n<p>If<br \/> you are using a lot of static images in your site then it is definitely<br \/> worth to try the css sprites technique. It not only speed up your site,<br \/> but also reduce the http requests. Here you can know about the complete<br \/> CSS Sprites and its implementation in <a target=\"_blank\" title=\"Using CSS Sprites technique\" href=\"http:\/\/www.smashingmagazine.com\/2009\/04\/27\/the-mystery-of-css-sprites-techniques-tools-and-tutorials\/\">here<\/a>.<\/p>\n<h3>15) Add Header Expire To Static Contents<\/h3>\n<p>Adding<br \/> an expiry time to static images can reduce further HTTP requests when <br \/>loading other pages in the site. Adding an expiry time to the images in <br \/>the site help in loading the pages faster.<\/p>\n<p>Copy and Paste the Following Code in your <strong><em>.htaccess<\/em><\/strong> file.<\/p>\n<blockquote>\n<p>ExpiresActive On<\/p>\n<p>ExpiresByType image\/gif A28800<\/p>\n<p>ExpiresByType image\/png A28800<\/p>\n<p>ExpiresByType image\/jpg A28800<\/p>\n<p>ExpiresByType image\/jpeg A28800<\/p>\n<\/blockquote>\n<h3>16) DB Cache Reloaded Plugin<\/h3>\n<p>The<br \/> DB cache plugin works differently from the super cache plugin by <br \/>optimizing your database alone. It caches WordPress\u2019s MySQL queries to a<br \/> file. This results in less space being used for caching and faster <br \/>performance from the WordPress blog.<\/p>\n<p style=\"text-align:center;\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/cdn.computingunleashed.com\/wp-content\/uploads\/2010\/04\/cwdsus.jpg\" style=\"display:block;\" class=\"aligncenter size-full wp-image-1180\" title=\"Caching WordPress Database To Speed up Site\" alt=\"cwdsus Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast\" height=\"331\" width=\"600\" \/><\/p>\n<p><a target=\"_blank\" title=\"Download DB Cache Reloaded Plugin For WordPress\" href=\"http:\/\/wordpress.org\/extend\/plugins\/db-cache-reloaded\/\"><strong>Download DB Cache Reloaded Plugin For WordPress<\/strong><\/a><\/p>\n<p>Apart<br \/> from all these criteria, the websites speed also depend upon other <br \/>factors such as type of hosting you have chosen, the number of <br \/>javascripts and css you use etc. VPS hosting will have more speed <br \/>compared to the normal shared hosting that many of the wordpress blogs <br \/>use.<\/p>\n<p>I am sure that if you can implement these steps properly it will definitely speed up your wordpress blog by a great amount.<\/p>\n<blockquote>\n<p>There may be many more ways to speed up your wordpress site. I have shared some of my knowledge here to speed up your site.<\/p>\n<\/blockquote>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Speed Up WordPress \u2013 Ultimate Guide To Make Sites Super Fast A good website should never compromise on the visitor\u2019s experience. A Serious web publisher invests some time and resources to learn everything possible about optimizing his website for speed. Who likes to browse through a sluggish slow loading site? Most of the normal visitors&hellip; <br \/> <a class=\"read-more\" href=\"https:\/\/venusimportexport.com\/wordpress\/index.php\/2011\/07\/03\/ultimate-guide-to-make-sites-super-fast\/\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1108","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/1108","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=1108"}],"version-history":[{"count":0,"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/1108\/revisions"}],"wp:attachment":[{"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=1108"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=1108"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/venusimportexport.com\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=1108"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}