Custom Nav Menu Walker Function
I’ve also written a Custom Comment Walker function, after 3 hours of searching, I’m convinced it may be the only one out there lol… If you’re trying to make a fancy navigation menu with CSS, you might...
View ArticleAdd Custom Gravatar Choices to a WordPress Theme
Aside from the standard Gravatar, WordPress allows users to choose from a list other default avatars. If you are creating your own theme, you can add an avatar or icon consistent with your theme’s...
View ArticleAdd a Link to the WP-Admin Bar
The WP-Admin bar was added in version 3.1 of WordPress and it’s made the lives of many WordPress publishers a lot easier. The bar appears to logged in users with sufficient privileges on the front-end...
View ArticleTheme Support Functions for Custom Header and Background
WordPress 3.4 introduced a new method of dealing with custom headers and backgrounds. The old functions add_custom_image_header( $args ) and add_custom_background( $args ) were depreciated in favor of...
View ArticleProper Way to Enqueue Styles and Scripts in a WordPress Theme
I’ve seen a lot of themes enqueuing style sheets and scripts incorrectly, either by calling them using the wp_print_styles or wp_head hooks, or just placing wp_enqueue_style() right in the header. The...
View ArticleProper way to add a Superfish Menu to a WordPress Theme
If you’ve ever coded the CSS and/or JavaScript needed to make a WordPress nav menu work smoothly across all browsers, you know how daunting that can be. Superfish is a jQuery plugin that is really...
View Article3 WordPress Hacks to Unlock Some Much-Needed Features
A Quick Foreword WordPress is fantastic, and it’s constantly improving. I think it’s amazing that the most powerful and popular CMS is open source and free. The massive community effort that continues...
View ArticleMaking a WordPress Theme – World’s Most Detailed Tutorial
This is the most detailed tutorial in the world (to my knowledge) on the topic of creating a WordPress theme from scratch. If you read it all, you will know everything you need to create a complete and...
View ArticleCustom Walker to Extend the Walker_Comment Class
The Walker_Comment class seems to be the weirdest and most hacked together of all the Walker classes in WordPress. Despite a few hours searching, I could not find a single example of a working...
View ArticleDreamweaver Snippets for WordPress PHP Functions
I’ve exported all my WordPress PHP snippets from Dreamweaver using Massimo’s Snippet Import/Export extension. I have about 50 of the most common theme related functions and pasted a lot of information...
View Article