A Novice Guide to WordPress Plugin Development

novice_guide_wordpress_plugin_devlopment

WordPress is an awesome publishing tool, and one of the best features is its flexibility to customize its core functions with plugins. The simplest definition of a plugin is:

A plugin is a snippet of code which is used to extend the functionality of WordPress.

And one of the nicest things about plugins is that the barrier to entry is extremely low. It takes very little technical knowledge to make your first plugin!

Click to Read

30 WordPress Development Tutorials

30-wp-development-tuts

WordPress can be very simple to work with, but it can also be very complicated. The system can be used to do just about anything you like.

In this post we have collected together a range of tutorials that span from the very first things you need to know, like working with the loop, to much more complicated tricks, like setting up post thumbnails on your home page.

Click to Read

How To: AJAX Post Pagination in MooTools

Post Pagination

Ever wanted to browse through the older post archives only to be staring at the screen for ages in frustration while the content slowly loads up? A quick fix would be to make use of AJAX to load the post archives. In this tutorial, I will show you how to do that using the ever popular JavaScript framework; MooTools on a typical 2 column WordPress theme.

The code is quite easily digestible and with a little CSS tweaking, you could get it to work for your theme.

Click to Read

How to Create Your Own Twitter Widget

twitter1

Even if there’s a lot of quality WordPress widgets available, sometimes none exactly fits what you need. In that case, you’ll have to create your very own widget. It may sound difficult at first, but it is not if you have a little programming experience.

In this tutorial, I’ll show you how to write a simple widget to allow your readers to share your posts on their Twitter accounts.

Click to Read

Little, Big Mistakes in your Blog

It’s very easy for little mistakes to creep up in your blog. Small things that ordinarily, you wouldn’t look near. But a little mistake can have a big effect on how a person sees your site.

Do You Live in the Past?

How many web sites have “© Copyright 2008 Blog Name” in their footer? But does yours still say “© Copyright 2007 Blog Name?”

It’s a simple mistake to make (Why would you be reading your own footer?), but if a reader notices it, they’ll have a nice laugh at your expense.

Even the very best of us make mistakes, isn’t that right TechCrunch and Shoemoney?

Click to Read

Does Valid Code Help Your Blog?

Valid CodeThe W3C is the internet’s daddy. They created HTML, CSS, and dozens of other specifications that govern the use of the technologies that makes the internet thrive today. Valid code is code which meets their guidelines, and can be tested in a validator, such as the HTML and CSS ones.

Does valid code actually help your blog though?

The Mythical Benefits of Valid Code

  • Valid code helps my search engine rankings. Good code helps your search engine rankings, i.e. code that the search engines can read. If you have used tables for presentation, causing your content to be split up in the coding, then Google will have trouble. However, if you just forget the trailing slash on your <img> tags, then they won’t be too harsh on you.

Click to Read