Book Image

WordPress 3 Cookbook

By : Ric Shreves, Jean-Baptiste Jung
Book Image

WordPress 3 Cookbook

By: Ric Shreves, Jean-Baptiste Jung

Overview of this book

<p>Using the WordPress Content Management System, you can create a beautiful, dynamic, and amazing website. WordPress is a flexible and powerful tool that's ideal for creating both blog and non-blog websites. Are you feeling limited with WordPress, or are you wondering how popular blogs do a certain kind of thing that you can't?<br /><br /><i>WordPress 3 Cookbook</i> focuses on providing solutions to common WordPress problems so that you can translate your site to one of the best. The author's experience with WordPress enables him to share insights on using WordPress effectively, in a clear and friendly way, giving practical hands-on solutions to WordPress problems, questions, and common tasks &ndash; from themes to widgets and from SEO to security. <br /><br />With this update to the WordPress 2.7 cookbook, you will learn many WordPress 3 secrets and techniques, with step-by-step, useful recipes dedicated to achieving a particular goal or solving a particular problem. <br /><br />You will learn to install and customize themes, work with plugins, customize content display, enhance interactivity with the user and build communities. Then, the book also teaches you to earn revenue through online sales and advertisements. You will also find recipes for SEO and enhancing usability, and the book finally winds up with information on the inevitable maintenance and security.<br /><br />This book helps you to get solutions to common WordPress problems, to make your site better, smarter, faster, and more secure.</p>
Table of Contents (16 chapters)
WordPress 3 Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Optimizing performance with cache management


As both website users and website owners, we want sites to load quickly without long delay. With Google now looking at site performance as a factor in search rankings, it is even more important that a site performs well relative to competitors. Site performance is impacted by a number of factors; one of the key issues is the amount of time it takes the server to generate pages on the site. An easy way to improve your site's performance is to implement caching, which takes some of the load off the server by making copies of frequently used files and displaying them to site visitors, instead of relying on the server to construct/retrieve the files every single time they are requested.

In this recipe, we look at implementing the powerful WP Super Cache plugin. When properly configured, this plugin can achieve considerable improvements in site performance.

Getting ready

To execute this recipe, you will need to install the WP Super Cache plugin. You will...