Tutorial: Querying the WordPress Database

There are all sorts of unique and interesting bits of information you can access from a WordPress database if you know how to do it. In this tutorial, we are going to cover some of the most useful WordPress database queries that you should know in order to maximize the ... Read More »

Tutorial: WordPress Admin Plugin: Part Two

In this tutorial, we will discuss the finer points of how to create a custom admin page. We are creating an easy-to-use admin page for less advanced users who more than likely will only be adding or editing posts and pages from their WordPress admin area. These are the ... Read More »

Tutorial: Creating a WordPress Admin Page Plugin

In this tutorial we will create an easy-to-use admin page for users who may not appreciate the complexity of the stock WordPress admin page. Our new admin page will be an add-on to the current admin section rather than a replacement for it. We are simply adding a new al... Read More »

Tutorial: How to use query_posts properly

The WordPress function query_posts is an incredibly useful and easy-to-use method for altering the results of The Loop. The Loop, as you may know, is the method that WordPress uses to gather up the information about the post or posts on the page. In this case, I use p... Read More »