Tutorials
How to Display an Author List with Avatars in WordPress: Redux
This code is no longer up-to-date. Please check out “An Even Better Author List in WordPress” for a better approach. WordPress has a built in function to display a list…

This code is no longer up-to-date. Please check out “An Even Better Author List in WordPress” for a better approach. WordPress has a built in function to display a list…
WordPress automatically places a line of text between your <head> tags which states the version you currently have installed. I have read that it is there for statistical reasons which…
When it comes to programming and designing web sites we should all aspire to create sites that conform to current W3C standards. Luckily enough, there is a great tool available…
My last little jQuery tutorial was an alternative to using CSS to create an image change on a mouseover. Now I want to take that one step further and add…
Sometimes when you are messing around with CSS, you can’t figure out why certain styles won’t stick. Most of the time, it’s because you are obviously doing something wrong, but…
Whenever I start a project, I like to work with a grid layout to help me place all the elements I need into proper alignment. Most sites work around a…
If you store files or images in a folder called “images”, and people enter www.yoursite.com/images as a URL, they will see a list of all the files you have in…
JavaScript is pretty useful but it does demand a lot of coding. Luckily for all of us, there are libraries out there that make it extremely easy to use the…
If you are developing a WordPress plugin, one of the first things I would suggest is adding a “Settings” link directly on the plugins page. This makes it easier for…
Creating a page list in WordPress is super easy. All it takes is one function call: <?php wp_list_pages(); ?>. The only problem with the list is if you have…