Using jQuery in a WordPress Theme
Using jQuery in a WordPress theme is a little bit different than using it on other static pages. It’s nothing major but without knowing your scripts simply won’t work.
Using jQuery in a WordPress theme is a little bit different than using it on other static pages. It’s nothing major but without knowing your scripts simply won’t work.
During my attempt to build a responsive theme framework I decided to launch a demo site with it and give it a little style of it’s own. During the building of the site I decided I would need a few …
Setting default post thumbnails in WordPress themes is actually pretty simple. All you need to do is use the built-in WordPress methods to see if a thumbnail exists and if it doesn’t simply use a default image.
With the abundance of WordPress sites it’s easy to get lost in the samey-ness of the internet. Every site owner and blogger should want something that is unique to their site. That often means making something that is unique, something …
Adding a new class to post_class() function couldn’t be easier. Use post_class(‘new-class’); in your code with the class name inside inverted commas.
TwentyEleven – a default too far. Time is upon us for a new WordPress default theme to take over from the much loved TwentyEleven. I use TwentyEleven it myself on a few sites and above the fact that it’s default …
NOTE: This method no longer provides the benefits it once used to. It has been a long time since Google’s experiment with showing author avatars by articles has ended. You can still add the tag however it’s usefulness is much …
Functionality Plugin A functionality plugin is a custom made plugin for your site. It holds any kind of changes you make to your site, any added features and functions and generally makes your site’s code easier to manage. If you …
UPDATED: August 2017. I’ve learned a lot since I wrote this post. I realize the naivety of having the ability to install software on the server but not being able to update the files through CLI. Like I said: I …