Some self-hosted WordPress sites tend to run slow, especially when you receive tons of heavy traffic every day. This may be a result of the amount of large files your site needs to load or inefficient coding. But there’s nothing worst than a slow site, so here are some quick tips on how to speed up your self-hosted WordPress site. These tips mostly apply to self-hosted WordPress site because if you’re site is hosted on WordPress.com, you’re already being taken care of.
1. Staying up to date with releases
Staying up to date with the latest version of WordPress is critical. In every update, there are usually a lot of performance enhancements. The developers at WordPress don’t release updates just for fun, but because they’ve upgrades or made something about WordPress better.
Same situation with WordPress plugins, stay up to date with the latest versions. It’s as important, and for the same reasons. WordPress plugin developers release new versions because they’ve modified the code in some way to make the plugin better. So keep up with the releases!
2. Disable or delete unused plugins
This is probably one of the biggest issues that causes WordPress sites to slow down. Depending on the plugin, they can have tons of scripts and code. So if you’re not using a plugin disable it and maybe even delete it. Decide which plugins are necessary for your site to run and then do-away with the ones that aren’t needed. It’s as simple as that.
3. Clean up your code
Since your code is what runs your site behind the scenes, optimizing it can do wonders for your load time. Below are some easy ways you clean up your code to load faster.
- Decreasing Whitespace
Whitespace refers to the spaces used in your code. Some coders, like myself, like to use a lot of whitespace (indented tabs, line breaks, etc.) for better readability and organization. But, decreasing whitespace will speed up your site’s load time by shaving off some extra bytes off the total size.
An example of using some whitespace:
.test {
font-family: Georgia, Times, serif;
font-size: 12px;
color: #000000;
}An example of minimized whitespace:
.test {font-family: Georgia, serif; font-size: 12px; color: #000000;} - Using external scripts
Instead of placing tons of code in your header.php file, use external scripts. This allows the browser to cache the script so it won’t have to read it for every other page.
An example of using external scripts:
<script type="text/javascript" src="example.js"></script> - Using shorthand CSS
Using shorthand CSS is great for everyone. It’s great for you, your browser, and your site visitors. It allows for your CSS to be more concise, and it loads faster too!
An example of using
long assregular CSS:.test {margin-top: 7px; margin-right: 1px; margin-bottom: 5px; margin-left: 3px;}An example of using shorthand CSS:
.test {margin: 7px 1px 5px 3px;}
4. Minimize PHP and database queries
And most important of all, cutting down on PHP and database queries. Each time a page on your site loads, if your browser has to execute any PHP queries, it adds to the load time. If you replace the PHP queries with static HTML, every time a page loads, your browser just reads the HTML.
An example of lots of queries & requests:
<title><?php bloginfo(’name’); ?><?php bloginfo('description'); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/mootools.js"></script>
An example of minimized queries & requests:
<title>WPCandy - The Best of WordPress</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="generator" content="WordPress 2.3" />
<link rel="stylesheet" href="http://wpcandy.com/wp-content/themes/wpcandy/files/style.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://feeds.feedburner.com/wpcandy" />
<script type="text/javascript" src="http://wpcandy.com/wp-content/themes/wpcandy/files/mootools.js"></script>
Post Revisions:
- 5 August, 2010 @ 4:51 [Current Revision] by michael castilla
- 4 January, 2008 @ 18:00 by Ryan Imel

The last point is particularly helpful. Why I didn’t think about hardcoding certain obvious values before? Thanks for the info, gotta modify header.php
The title tag might need to stay dynamic, though. For single post and so forth.
Anyways, I was expecting to read something about using caching plugin, or even redirecting to a html version during extremely high traffic (like David Airey with one of his posts about the cracking), but then again the title of this post says “simple ways”. So it’s all good.
Cheers!
Great tips. Talking about the first one, the new version of WordPress makes it even easier to have up to date plugins because it tells users when there are new versions of these plugins.
I recommend the plugin WordPress Automatic Upgrade, which makes the updating proccess as simple as pressing one button.
I came up with a question… On my blog I have tons of plugins, but almost all of them are disabled. If I completely delete them from my Plugins folder, would it make any difference in the blog’s speed?
About your example to remove whitespace from CSS code, you could download a version with white space to your computer, then upload a version without any whtiespace to your server.
Then, if you need to change soemthing you have the easy-to-read version on your local computer.
A good online service for formatting and removing whitespace is the CSS Formatter and Optimizer, an online tool.
I guess another important tip is to enable WordPress cache. This is a great feature of the system and can speed up the site.
@ Thássius V. : Disabling alone should be enough to speed up WordPress. Deleting them will save you space, but won’t increase the speed anymore.
Some of these things actually made sense to me!
Especially the queries etc, i didn’t think about that before!
Once I heard about a plugin called WP Super Cache. Somebody said it makes blog loading even faster than WP-Cache does. WPCandy could try it and tell its users the results.
@Bram: Haha, yeah after doing some research, I learned a ton of stuff I hadn’t known before.
@Thássius: I think I’ll do that. I’ll go install it now and see what’s up. I know a friend who uses it for when he receives a lot of traffic and he says it helps a ton.
I love when people write about things they know really well. But I don’t think this article is that case. Try to research, try to measure and you will get know that these advices have almost no influence on performance.
@Kahi: I did do my research and the things I listed here in this post is what I found as a result of my research.
@Michael Castilla: What do you mean by research? I speak about exactly expressable values. DB queries and generation times before all. Do you have some numbers?
I love this, very helpful!
thank you so much for the tips and the great post. Keep it up!
how much does decreasing whitespace in your css really speed things up? are we talking 1% faster? 10% faster?
@Julian Johannesen: Depends on the situations. By decreasing whitespace in the CSS, it makes the file smaller and faster to be loaded by user. Using the CSS Formatter and Optimizer, I could make my CSS file 30% smaller.
Thassius is correct Julian. Decreasing the file size will speed things up. Think about downloading a file, the smaller the file, the better chance you have of getting it right away. Faster someone can download, faster the browser can start decoding and translating the code.
But with modern-day browsers and internet speeds, it probably won’t matter too much. The good benefit of using single line CSS is the ability to go back and be able to read and fix much easier. It is much simpler to find the DIV ID’s as well as being much faster for hand coding out CSS. Single line CSS fan right hurr!
Whats up Kahi’s bum???
I do agree that while this is a spot on article, something new could have been a better option (like the plugin Thássius V. suggested).
In saying that i do like the idea of cutting down the php querries in the header, boy does that not get messy at times??
@Jermayn Parker – it’s all about that listening to advices in this article is wasting of time withou any effect, sure probably except the “disable unused plugins” advice.
By the way, making header static (point 5) does not cause any queries-count decrease, it’s mistake, advicing based on guess.
[...] your WordPress blog running slow? Here’s 4 simple ways to speed up WordPress. Via WPCandy. After reading this post, I realize that I have a lot of cleaning up to [...]
The last point is a huge revelation for me, thanks!
Never quite thought about that before. With regards to the CSS, does the short-hand form work for all browsers?
@Mosey: Haha no problem. And yes I’m pretty sure short-hand CSS works in all browsers, since it’s just leaving out spaces.
@kahi and @Michael
I believe kahi is correct on your last point and you might want to redact if before everyone start taking out that vital dynamic content from their headers. I am pretty sure WordPress autoloads all those values from the database in one query and then just servers the values from php’s memory.
To test this you could use wordpress’s query number display code which i don’t know off the top of my head. And just check and see if the total amount of queries lessens.
[...] 4 Simple Ways To Speed Up WordPress [...]
Thanks for the helpful tips! Now I’ve gotta implement these…
Great tips. One of the easiest things you could do to speed up the loading of your site is to minimize or eliminate third party services/widgets from being used on your blog. If the 3rd party site is loading slow, it’s going to cause the blogs it’s displaying on to also load slowly. Whenever possible, substitute a thirdparty service/widget with a WordPress plugin. This helps keep things local to your blog.
Thanx a lot. These are very useful. I will try!
Very, very helpful article. I am about 4 months into the whole WordPress movement and some of these seem obvious. However, I simply did not think about them being issues. Thanks a lot.
Interesting article :
http://aciddrop.com/2008/01/21/boost-your-website-load-time-with-3-lines-of-code/
Please read through the comments for WP related issues and follow-up in new releases of the script ( 0.3.1 at the time of writing )
More thoughts on this issue ( read the comments as well please )
http://paulstamatiou.com/2006/06/22/5-ways-to-speed-up-your-site
[...] 4 Ocak 2008 tarihinde İngilizce olarak wpcandy.com sitesinde Michael Castilla tarafından http://wpcandy.com/4-simple-ways-to-speed-up-wordpress/ adresinde [...]
[...] ini ditulis berdasarkan artikel di situs WPCandy.Com Post a [...]
[...] матеріали: WPCandy, Matt [...]
[...] sizin için avantaj getirecektir. Öncelikle Michael Castilla‘nın ingilizce olarak derlediği yazının Cnkt tarafından yapılan Türkçe çevirisini okuyabilirsiniz. Zorbey.org‘da da bu konuyla [...]
[...] sizin için avantaj getirecektir. Öncelikle Michael Castilla‘nın ingilizce olarak derlediği yazının Cnkt tarafından yapılan Türkçe çevirisini okuyabilirsiniz. Zorbey.org‘da da bu konuyla [...]
[...] sizin için avantaj getirecektir. Öncelikle Michael Castilla‘nın ingilizce olarak derlediği yazının Cnkt tarafından yapılan Türkçe çevirisini okuyabilirsiniz. Zorbey.org‘da da bu konuyla [...]
Some observations:
The thing about removing queries and other PHP stuff: not every one has the same impact. WP actually tries to cache lots of stuff in memory, so that even when you place several functions that’d normally require a trip to the database get pulled from cache instead. That way, instead of the overhead of a database query, you only have the (much smaller, IMO mostly negligible overhead of a PHP function.
There’s a very small overhead in using php functions (in general) vs just putting in some static html. It’s there, but it’s small. You should consider each case separately to see if the speed benefit outweighs the convenience of keeping things dynamic.
Compressing CSS, JS and even HTML are not only interesting from a visitor bandwidth viewpoint (even though there’s still folks that don’t have 20Mbit connections at their disposal, don’t disregard them!), there’s also your own bandwidth to consider, especially if you get the occasional traffic spike. Also, minimizing the amount of stuff that gets called from your page (CSS files, JS files, images, etc): the visitor’s browser will open up a new connection for every single one, slowing things down. Don’t just minimize connections to other sites, keep an eye on connections to your own site as well. One big issue is that lots of WP plugins come with their own versions of prototype.js and the like, while there’s a version included with WP itself — so in the end you’ll end up with three different versions of prototype.js being included on your page. Bah.
Here’s a great tool to test the impact of making your code smaller and less dependant on external stuff.
I like your article, but there’s so much more to discover when it comes to getting your sites smaller and faster. Initially, that’s all I wanted to say. Sorry about going on and on. =]
I heard that one plugin in particular could really slow down your blog is Text Control ( http://dev.wp-plugins.org/file/text-control/trunk/text-control.zip?format=raw)
Can anyone verify that?
[...] 4 Simple ways to Speed up WordPress (Source: WP [...]
[...] 4 Simple ways to Speed up WordPress (Source: WP [...]
[...] 4 Simple ways to Speed up WordPress (Source: WP [...]
[...] 4 Simple ways to Speed up WordPress (Source: WP [...]
[...] 4 Simple Way To Speed WordPress [...]
[...] (или справочный лист по WordPress) (см. также advanced help sheet ). Four Simple Ways to Speed Up WordPress (или Четыре простых способа ускорить WordPress) также [...]
[...] Оригинал статьи: 4 Simple Ways To Speed Up WordPress [...]
[...] with static HTML, every time a page loads, your browser just reads the HTML. An example from WP Candy: With PHP requests: <title><?php bloginfo(’name’); ?><?php [...]
[...] матеріали: WPCandy, Matt [...]
[...] Daily Blog Posting To Your WordPress Blog. 124. Huge Compilation of WordPress Code. 125. 4 Simple ways to Speed up WordPress. 126. WordPress Date Button. (Source: WP Designer. 127. Wicked WordPress Archives in One Easy Step! [...]
Going with #2, also clear out database tables created by plugins.
Instead of writing CSS without any whitespace (which makes it unreadable, a better idea is to write CSS in the normal way and compress it with CSSClean (don’t be too aggressive on compression lest it strips out necessary rules). [oh wait, I just noticed it has been told by someone else. Oh well!]
The PHP engine is infinitely faster than MySQL, so the only thing of concern is database queries. However, in case of traffic spike, PHP can be a bottleneck too.
[...] Diantara posting terbaiknya adalah WordPress Help Sheet (lihat juga advanced help sheet). Four Simple Ways to Speed Up WordPress merupakan informasi yang sangat berguna untuk Anda pengguna WordPress yang hosting [...]
[...] 4 Simple ways to speed up WordPress [...]
Cool info. Thanks for sharing.
[...] Del.icio.us Daily Blog Posting To Your WordPress Blog 124. Huge Compilation of WordPress Code 125. 4 Simple ways to Speed up WordPress 126. WordPress Date Button (Source: WP Designer) 127. Wicked WordPress Archives in One Easy Step! [...]
Good tips. I think these are all great. However for those that want to improve speed and performance in a matter of a seconds, I recently had a great experience with the plugin wp-supercache. Made a huge improvement on WordPress improvement. For those interested, you can read about my suggestion for speeding up WordPress performance.
http://www.widecastmarketing.com/wordpress-tips/speed-up-wordpress-performance.html
[...] Here’s the article [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
I have been debating whether to use the WP Super Cache plugin. The issue I have is that I do not like the fact that you have to CHMOD 777 the Wp-Content directory. If I change it back after installation, it just seems to slow back down.
Someone needs to come out with a plugin to speed up wordpress like the super cache plugin without having to use 777.
Maybe someone already has one and I am missing it?
Another question I have is, which plugins and widgets are the worst as far as slowing down the loading of pages and posts?
Thanks for the tips and information.
I am still learning.
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
thank you!
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 4 formas de mejorar la velocidad de tu WordPress [...]
[...] 4 способа ускорения WordPress [...]
[...] 4 maneras de optimizar la velocidad de WordPress, ver cómo. [...]
[...] 17. 4 formas de acelerar tu Blog WordPress [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 formas de mejorar la velocidad de tu WordPress [...]
[...] Como personalizar sua página de erro 404 [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
This article deserved some link love. Very useful and easy to follow. So i decided to add your article to my blogroll at http://makehowto.info/
Well Done!
I wish you a lot of traffic and hopefully many WordPress Bloggers to make use of this. I’d love a faster Internet
I’m not sure how much the white space deletion would help. We are talking milliseconds here and sometimes the code is hard to read after you one line it.
It just depends on your coding style. If you have to learn a new coding style is it really worth a few milliseconds?
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 formas de mejorar la velocidad de tu WordPress [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
[...] 17. 4 Ways to speed up your wordpress blog [...]
[...] 12. Speed Up WordPress This is the most important factor – a SPEEDY SITE. If you site hangs there loading one page, visitors will leave and never go back. If it’s fast, they’ll probably stay. Homepage [...]
[...] 15、加速Wordpress的4个基本方法 [...]
I just did a css file cleanup test on http://www.cleancss.com/
It has some neat options too, as to how you would like it optimized. If it takes you 5 minutes to go back in and find where you have to make changes to your styles it may not be worth it though
nice article, must to try
[...] 4 Simple ways to Speed up WordPress: (source: WPCandy) Category : Front-end [...]
[...] 15、加速Wordpress的4个基本方法 [...]
[...] 4 способа ускорить WordPress [...]
[...] Title (source: hack wordpress) 10. How to Format Images for Feed Readers (source: PEARSONIFIED) 11. 4 Simple ways to Speed up WordPress (source: WPCandy) 12. How To Add Gravatars For The Post Author in WordPress (source: ThemeShaper) [...]
[...] 4 formas de mejorar la velocidad de tu WordPress [...]
[...] 15、加速Wordpress的4个基本方法 [...]
If you want WordPress speed-up, you will have to consider WP-Cache also. WP-Cache is caching module and I made some test on WordPress installation before and after WP-Cache. Results were amazing. From 3.44 requests per second, WordPress became able to handle 235 requests per second, Testing environment was 2.6Ghz dual core P4 with 1GB memory on Linux.
[...] 17. 4 Ways to speed up your wordpress blog [...]
[...] 17. 4 Ways to speed up your wordpress blog [...]
[...] 4 maneras de optimizar en velocidad tu blog con WordPress, ver cómo. [...]
[...] 4 Simple Ways To Speed Up WordPress [...]
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
Your points noted. Thanks.
nice tutorial. i didnt know that >_<
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
[...] another great suggestion from WPCandy that I’m extremely reluctant to do, but I know they’re right. First, use shorthand CSS [...]
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
4 Simple Ways To Speed Up WordPress…
These tips mostly apply to self-hosted WordPress site….
4 Simple Ways To Speed Up WordPress…
These tips mostly apply to self-hosted WordPress site….
[...] 15、加速Wordpress的4个基本方法 [...]
[...] Blog beschleunigen Hier findet Ihr verschiedene Tipps wie man den WordPress Blog deutlich beschleunigen kann. (Englisch) [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 Simple Ways To Speed Up WordPress . . [...]
Thanks a lot!! Very useful tips
[...] 原文:4 Simple Ways To Speed Up WordPress ‘ | 分类: 成长里程 如需转载烦请添加以下信息: 本文转自sqboa==> admin@sqboa.com. 如喜欢这篇文章或者本站,建议您RSS订阅本站,以及时地获取更多精彩内容! [...]
[...] 17.4种方式为你的WordPress博客提速 为你的WordPress博客提速的几点快速提示。 18.为你的博客创建手机版本 用Mofuse为你的博客创造一个手机上访问的版本。 [...]
[...] 更多详细请参考: 加快wordpress的速度的4个方法 Posted in 情感日记 | Leave a Comment [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 17.4种方式为你的WordPress博客提速为你的WordPress博客提速的几点快速提示。18.为你的博客创建手机版本用Mofuse为你的博客创造一个手机上访问的版本。 [...]
[...] 加速wordpress的四個方法 一些簡單的技巧用來加速自己管理的wordpress網站 [...]
[...] read about this great tip on Wpcandy’s simple ways to speed up WordPress post. It makes a lot of sense, cutting down on PHP and database queries. Each time a page on your [...]
I’m not trying to rag on you, but I feel that some of your points are misleading.
Using external scripts will not necessarily improve your load time, in fact, it could make it worse. Each time a script loads, most browsers block all other page component downloads while it downloads and parses (lacking a link, this was discussed in a Google teck talk).
Removing white space from CSS and CSS shorthand is a minimal, but false optimization. Using CSS that doesn’t employ child elements as part of the selectors is a better optimization (see http://jimbarraud.com/2008/05/07/css-inefficiency/).
[...] Top Simple Ways to Speed up WordPress Blog Tagged with: speed up wordpress blog [...]
[...] Wpcandy’s simple ways to speed up WordPress [...]
[...] simple ways to speed up WordPress(提速WordPress的简单方式) . [...]
[...] simple ways to speed up WordPress(提速WordPress的简单方式) . [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 4 Ways to speed up your wordpress blog [...]
cool tips !
for sure i will apply it on my blog
[...] 24. 4 Simple Ways To Speed Up WordPress [...]
[...] 20. 4 Simple Ways To Speed Up WordPress [...]
[...] 我得到这个信息是因为我阅读了Wpcandy的《简单方法提升WordPress速度》。此文让我获益良多。每次你的网站载入页面,如果需要解析PHP,就会增加载入的时间。当你用静态HTML来替换PHP的运行,每次载入页面,你的浏览器就只需读取HTML。 [...]
[...] Read More [...]
[...] 17.4种方式为你的提速Wordpress博客 [...]
[...] 4 Ways To Speed Up Your WordPress Blog [...]
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 simple ways to speed up WordPress Speed up wordpress Configure Apache for Maximum Performance 3 easiest ways to speed up WordPress How to show related posts in WordPress without Plugin How to turn off post revision in WordPress Article author: Marcin Wawrzyniak He loves website optimization, knows and uses WordPress and various PHP/JavaScript frameworks as well as C# basics and much more. Coffee is his fuel, so when it’s gone, he will undoubtedly die. [...]
[...] Read the article here [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] http://wpcandy.com/articles/tutorials/4-simple-ways-to-speed-up-wordpress.html Bu Yazıyı Paylaş Facebook’ta Paylaş | Oyyla! | Limkle | Del.icio.us WordPress | wordpress hızlı | wp | wp hızlandırma ipucu | wp-cache [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
asf
[...] 4 Simple Ways To Speed Up WordPress [...]
[...] Wpcandy发布过一篇 simple ways to speed up WordPress(提速WordPress的简单方式) . 详细的介绍了如何减少PHP和数据库查询. [...]
I would try this one
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] Wpcandy ho letto dei semplici modi per velocizzare WordPress. Dice, in pratica, di usare il meno possibile [...]
[...] WPCandy: 4 Simple Ways To Speed Up WordPress [...]
[...] 次に「4 Simple Ways To Speed Up WordPress — WPCandy — WordPress Themes, Plugins, Tips, and Tricks」より、 [...]
[...] 4 Simple Ways To Speed Up WordPress [...]
Will experiment it, thanks for the post
wow. but use AJAX is better although slower the speed..haha
the only thing i konw is
if u want to speed up ur browing
u won’t miss dsl speed
Your sharing is taken noted.Thanks for this piece of info.Great work.
[...] 32.Simple Ways To Speed Up WordPress [...]
[...] 32.Simple Ways To Speed Up WordPress [...]
[...] of right now but I am sure you can get plenty more info from the following posts on this topic:4 Simple Ways To Speed Up WordPress4+1 Ways To Speed Up WordPress With Caching38 ways to optimize and speed up your WordPress blogThe 3 [...]
[...] hat, sind bei jedem Aufruf im Grunde unnötige php Aufrufe und Datenbankabfragen enthalten. Auf WPCandy hab ich ein paar gefunden, auf die man gut und gerne verzichten kann in dem man das Ergebnis [...]
[...] 3.尽量减少PHP和数据库查询 在4 Simple Ways To Speed Up WordPress这篇文章中提出,减少PHP和数据库查询可以减轻网站服务器的负担。每次加载网页时,如果浏览器已经执行任何PHP的查询,它将增加你等待打开页面时间。如果用HTML取代某些PHP ,那么页面加载时,浏览器仅仅只是读取HTML。 例如:可以将hedaer文件中的 [...]
[...] also have read great tip on Wpcandy’s simple ways to speed up WordPress. The article makes a lot of sense, cutting down on PHP and database queries.Jadi when the page [...]
[...] also have read great tip on Wpcandy’s simple ways to speed up WordPress. The article makes a lot of sense, cutting down on PHP and database queries.Jadi when the page [...]
[...] 32.Simple Ways To Speed Up WordPress [...]
Great article,
Other speed tricks are: Themes with header images or backgrounds are not all compressed images. If you take a look at the sizes of the images of ones you use on the main page or images that were included with the theme before installing you can drasticlly speed up your blog
I am going to try
[...] 3.尽量减少PHP和数据库查询 在4 Simple Ways To Speed Up WordPress这篇文章中提出,减少PHP和数据库查询可以减轻网站服务器的负担。每次加载网页时,如果浏览器已经执行任何PHP的查询,它将增加你等待打开页面时间。如果用HTML取代某些PHP ,那么页面加载时,浏览器仅仅只是读取HTML。 例如:可以将hedaer文件中的 <h1 id=”title”><!–p bloginfo(’name’);–></h1> [...]
Please used the code tag:
to show code correctly[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 Simple Ways To Speed Up WordPress | WPCandy [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
There are so other ways – optimizing your database, reordering your css and includes, etc…
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 93. 4 Simple Ways To Speed Up WordPress [...]
[...] read about this great tip on Wpcandy’s simple ways to speed up WordPress post. It makes a lot of sense, cutting down on PHP and database queries. Each time a page on your [...]
Very useful post bro…. because these days the site speed is very important for a website… it even effects seo!
[...] 15、加速Wordpress的4个基本方法 [...]
[...] WPCandy: 4 Simple Ways To Speed Up WordPress [...]
[...] 8· 4 Ways to speed up your wordpress blog [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 4 Ways to speed up your wordpress blog [...]
[...] 4 formas de mejorar la velocidad de tu WordPress [...]
[...] 17.4种方式为你的WordPress博客提速 [...]
Many Thanks for sharing
[...] 4 Simple Ways To Speed Up WordPress [...]
These are actually great and simple ways which every wordpress blog owner should follow…good work ..keep it up..=======================================================================
http://priyankahotelsandtravels.com/
[...] 17.4种方式为你的WordPress博客提速 [...]
[...] 3.尽量减少PHP和数据库查询 在4 Simple Ways To Speed Up WordPress这篇文章中提出,减少PHP和数据库查询可以减轻网站服务器的负担。每次加载网页时,如果浏览器已经执行任何PHP的查询,它将增加你等待打开页面时间。如果用HTML取代某些PHP ,那么页面加载时,浏览器仅仅只是读取HTML。 例如:可以将hedaer文件中的 <h1 id=”title”><!–p bloginfo(‘name’);–></h1> [...]
[...] jednog dobrog posta o tome Wpcandy’s simple ways to speed up WordPress. Ima puno smisla u smanjenju PHP-a i upita ka bazi. Svaki put kada se strana na vašem sajtu učita [...]
I want to use this simple ways to speed up WP. Thank you
There is a very simple trick to significantly speed up the loading of your wordpress blog. Thanks for Sharing
What about stuff like removing spam comments from the DB regularly. Also using stats plugins like slimstat seems to sometimes slow down the WP DB…
slow sites are really pain in the a$$
The second step really helped me in speeding up my wordpress. Disabling some of the plugins really speeded it up!!! Thnx once again for this great post.
When I minimize whitespace my website loading time increases with a couple of seconds (WordPress) and I wonder why.
the SuperCache plugin is very usefull since it decreased loading time by a couple of seconds.
thanks for the really practical tips
Hi all.
I have also seen other ways to speed up a blog. I would say that the pluggin was named “super cache” or something similar. What’s your opinion about this cache applications? Do they really work?
Thanks for all this tips.
Xavier.
Thanks for these great tips..Can you tell me how to reduce image size without loosing quality.I have tried smush it but i have to add all images manually to shrunkit.is there any other plugin?
thanks! these tips can realy help!
Thank you for sharing this information with us, you can also use
to load the site buffer which backend server is busy rendering the html.
Hello,
Thanks immensely for the tips on unnecessary plugins. I’ve a tendency to activate plugins, and deactivate them without deleting them
Cheers,
Pope
that really are the basics only !
there are a lot of plugins which can help
great tutorial.. thanks for sharing mate… keep up the good work.. thanks
Brilliant tips! Especially the PHP requests one! That’s so useful… Going to implement this now on all my wordpress blogs! Thanks