WordPress is well known for its plugins and themes, but not enough people know and love what you can do in your themes functions.php. Chris Pearson showed his love for them back in May, and he did a great job of explaining how you can bring your own functions.php file to each and every theme [...]
Yoast tweaking websites
10 Checks to the Perfect WordPress theme
I’ve seen it happen so often. People have a great blog, and at some point, they decide they need a new look and feel. They then decide to either buy one or use one of the free themes available at wordpress.org. There’s a couple of things they’ll look at, usually in the order: layout / [...]
Categories: WordPress
Using actions in your WordPress themes
At some point, every major theme developer wants to do “specific” things in his theme(s). Either you want to add specific images, need several meta’s per post or you want to move some of the “utils” like edit this post around. I’ll be blogging a bit about the several things I do in my theme [...]
Categories: WordPress
My redesign: the homepage
Quite a few people have been e-mailing me how I managed to get my homepage design done in WordPress, especially with the different featured blocks. So, since this site is all about sharing, let me show you! This is all done in the index.php file of my theme. The first block, the intro, is just [...]
Categories: WordPress
Replacing plugins with template code: Gravatars
Lately I’ve been trying to reduce the number of plugins I’ve got loading to speed up my WordPress a bit, especially those plugins that do “stuff” in my theme. I’ve been replacing these plugins with template code, and this is the easiest fix I had so far: I replaced a 40k gravatar plugin with one [...]
Categories: WordPress
Looking for SEO aware WordPress developers
I’ll make it quick and easy: I’m getting too much requests for WordPress related work (plugins, themes, etc.). I don’t mind because I love to cherry pick, but I’d like to have a few people whom I could refer too. So please, if you’re a WordPress developer and you’re aware of SEO (hey, if you [...]
Categories: WordPress
Speed up WordPress, and clean it up too!
Every once in a while people will ask me to fix their blog, because it’s either slow, or broken. When it’s not something to do with their WordPress hosting, (some hosts are just plain bad and slow), most of the time this is caused by either broken plugins, or broken themes. There are a few [...]
Categories: WordPress
Adding a description to your categories
Robbert mailed me today asking with which template tags I used to make the description show up on my category pages. Well, first of all, you can add a description to your categories under Manage -> Categories: If you press the edit button there you can edit them like this: The description is what we’ll [...]
Categories: WordPress
WordPress theming: pushing trackbacks down
I was playing around with my comments section as I wanted to style trackbacks differently from “normal” comments, and while playing around, I decided to just bump them down. The problem with the trackbacks was that they were interfering with the comment discussion. And as I want to keep that discussion as lively as possible, [...]
Categories: WordPress
Fixed category subpage titles and a fix in permalink redirect plugin
Subpages of category archives were improperly 301′d back to the main category page… Fixed that now, so update NOW: the permalink redirect plugin. I fixed the title for category subpages too btw, check how this works: } else if ( is_category() ) { echo single_cat_title(""); echo " archives – "; bloginfo(’name’); if (get_query_var(’paged’) > 1) [...]
Categories: WordPress