Book Image

WordPress Top Plugins

By : Brandon Corbin
Book Image

WordPress Top Plugins

By: Brandon Corbin

Overview of this book

Bloggers, authors, coders, photographers, moms, dads, big companies, small companies, and even kids use WordPress to manifest their personas online. WordPress is used in every market, in every country, and continues to grow everyday. This explosive growth and international open source love affair was ignited the day WordPress announced the simple idea of a 'plugin'A WordPress plugin is a collection of files (PHP, javascript, css) that creates a small feature or modification to your WordPress blog. WordPress Top Plugins will teach you to add these plugins to an already built base WordPress site, and customize them where applicable.This book will walk you through finding and installing the best plugins for generating and sharing content, for building communities and reader base, and for generating real advertising revenue.There is literally a plugin for almost anything you want to achieve in WordPress.This book will show you how plugins work, and more importantly, how to install and activate them on your blog without you having to touch a single line of code, unless of course, you want to.Content is king, and it’s pretty hard to generate. This book will cover some of the best plugins available on WordPress to generate unique and dynamic content.Once you have your blog loaded chock full of juicy content, you will learn how to turn your blog in to an overnight sensation by helping your readers to share it, using tools to retweet, post on Facebook, and so on.This book will teach you how to build a community with one single killer plugin, namely, BuddyPress—the best community building plugin available for WordPress.Once you are through with plugin basics, content, and building a community, this book will show you how to generate revenue! It will cover the top plugins for turning your blog into a money making machine!This book will also cover plugins focused on tweaking and perfecting your blog’s overall look and feel, and functionality.Nothing helps build a powerful online blog brand than a horde of talented writers to contribute their ideas and content – as well as their social network. This book will cover a bunch of plugins that will make working with multiple authors easy, efficient, and effective.Last but not the least, it will cover the best plugins for ensuring that your blog is secure, the database is running optimally, and in the case of an emergency, you have a full backup copy of your blog.While most plugins in this book are focused on a blog’s frontend, this book will also cover some great 'non-public' facing plugins that make our lives so much easier and make your WordPress site a productive powerhouse.
Table of Contents (15 chapters)
WordPress Top Plugins
Credits
About the Author
About the Reviewer
Preface

Keeping your plugins up-to-date


With WordPress's "automatic-updates", keeping all of your plugins up-to-date is a breeze. With a quick glance at your plugin manager, you'll know precisely which plugins need to be updated. A click on the Upgrade Automatically link performs all of the necessary actions to download, back up, and install the newest version of the plugin.

Out-of-date plugins are highlighted along with a message that says "There is a new version of Plugin Name available". In order to keep your blog running smoothly and securely, make sure that you keep your plugins up-to-date.

Learn by tinkering

Seeing how a developer handles a specific problem, how he/she then tries to break it, and then fixes it, is good way to learn how to program in PHP. Moreover, thanks to WordPress's built-in fail-safes—breaking a plugin will, most likely, not break your website.

WordPress plugin API

WordPress's plugin API at http://codex.Wordpress.org/Plugin_API contains all of the WordPress-specific tags, functions, and insights in to making and modifying plugins.

PHP references

As mentioned before, each plugin is written in PHP, which means that a plugin has access to every PHP function that exists—all 700 of them. To learn more about PHP and all of the cool stuff that you can do with it, head over to the PHP manual at http://php.net.

CSS

Cascading Style Sheets is a standard language for defining the look and feel of text and other elements on a web page. CSS is what you will use to "style" a plugin beyond its original design. You can learn more about CSS from any of these great resources at http://delicious.com/popular/css.

JavaScript

JavaScript is another very popular programming language that runs on your browser—opposed to the server-side nature of PHP. JavaScript allows you to make changes to virtually any part of your website without having to tinker with PHP. For more information about JavaScript, check out http://delicious.com/popular/javascript.