Book Image

WordPress MU 2.8: Beginner's Guide

Book Image

WordPress MU 2.8: Beginner's Guide

Overview of this book

WordPress MU enables you to build a complete, professional blog network. Each user gets their own blog, and can choose their favorite templates and plug-ins, and develop their own content. WordPress MU powers some of the largest blog networks in the world, including the mighty WordPress.com ñ home to thousands of bloggers. This book will take you through the setup of a WordPress MU-powered blogging network, using a real, working blog network as an example, so that you can follow the creation process step-by-step. Your blogging network will be complete with professional features such as friends lists, status feeds, groups, forums, photo galleries, and more, to build your own WordPress.com ñ a place where users can quickly come and create a blog for themselves. The book starts with a clean install of WordPress MU, and as you work through the book, you will build the blog network, and add on more and more features, all seamlessly integrated to achieve a professional, custom-built look.You will find new themes and plug-ins added to the site, as well as customization of the WordPress multi-user code. The book will also look at ways you can manage your community, and keep your site safe and secure, ensuring that it is a spam-free, enjoyable community for your users. In the later chapters, you will add a forum using the bbPress script, and add BuddyPress social networking components to your site. Imagine how good you'll feel when your first WordPress multi-user blog network launches.
Table of Contents (18 chapters)
WordPress MU 2.8 Beginner’s Guide
Credits
About the Author
About the Reviewers
Preface
Index

Time for action – pings


  1. Open up /wp-admin/includes/schema.php.

  2. Find the line that says

    add_option('ping_sites', 'http://rpc.pingomatic.com/');
  3. Change that line so that it reads

    add_option('ping_sites', "http://rpc.pingomatic.com/\nhttp://rpc.NEWPINGSITE.TLD");
  4. You can add multiple sites as long as you separate each URL with a \n.

  5. Save and upload the file.

  6. Any future blogs will be created with the new ping sites set in Site Options.

  7. You can update existing sites either via MySQL or by using the Site Admin panel.

What just happened?

We have added a few extra sites to the list of ping services that will be notified when a new post is made.

A ping is an example of a push mechanism. Instead of blog aggregation services having to look at all the blogs, they are listed to see which ones have new content. The blogs themselves inform the aggregators that they have been updated by sending them a ping.

Ping-o-Matic is a service that receives pings and then passes them on to multiple servers. This reduces the...