Book Image

WordPress Multisite Administration

By : Tyler Longren
Book Image

WordPress Multisite Administration

By: Tyler Longren

Overview of this book

WordPress is an incredibly popular blogging platform. Few people realize that the software behind WordPress.com, which is a standalone WordPress with multisite enabled, is available for free, for anyone to make use of. WordPress Multisite is a special “mode” built into WordPress, which allows you to create a network of multiple websites, all running on a single installation of WordPress. WordPress Multisite Administration is an easy-to-understand book filled with information, tips, and best practices to help you create and manage a blog network similar to http://wordpress.com/, by using WordPress Multisite. WordPress Multisite Administration will take you through all the steps necessary to get WordPress Multisite installed and configured on your server. It covers everything from installation and initial configuration to customizations and some helpful troubleshooting tips. You will also learn how to build your own blog directory that features the authors in your WordPress Multisite network. The blog directory is built by making use of WordPress child themes, an incredibly useful thing to know how to do. You'll learn everything you need to know about running and maintaining a WordPress Multisite installation.
Table of Contents (14 chapters)
WordPress Multisite Administration
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Server-side caching


Server-side caching is a lot more interesting than client-side, at least for me. Server-side caching saves content such as images, HTML, and CSS on the server that's hosting the website, as opposed to storing it in visitors browsers. With the server-side caching, the software doing the caching will check if there's a cached version of the current page before sending it to the browser for rendering. There's a plethora of WordPress plugins that offer various caching features.

Full-featured server-side caching plugins

One of the most popular caching plugins for WordPress is W3 Total Cache . I attribute its popularity to its rich feature set. It does a lot, from minifying your JavaScript and CSS code, to integrating seamlessly with paid CDNs. W3 Total Cache is a complex plugin and a little difficult to figure out at first.

I've never used W3 Total Cache, it's always seemed to be a bit of an overkill for most of my websites. If you are interested in more details about W3 Total...