Articles in the WordPress Theme Category

[23 Feb 2011 | No Comment ]

When using the WP eStore and Thesis Theme you may run into the issue of your images displaying too big or small. There is a simple fix for this as I will explain in this cheat sheet.
The Thesis theme specifies a width for the input fields in it’s theme CSS. This makes it so images have a specific size and will cause them to be stretched  or smooched.
To fix this issue all you need to do is override the CSS of the theme by adding the following CSS code in the …

[18 Feb 2011 | No Comment ]

This little snippet of code will make it so the copyright year on your site is always current. We all tend to forget to change this after the new year. =)

[25 Jul 2010 | One Comment ]

If you are trying to tweak or develop a WordPress theme then this post should help making your life a bit easier. This post has a list of all the WordPress functions that you can use from your theme’s template file.
Useful PHP Code for Header

<?php bloginfo(‘name’); ?>
Title of the site

<?php wp_title(); ?>
Title of the post or page

<?php bloginfo(‘stylesheet_url’); ?>
The style.css file’s location

<?php bloginfo(‘pingback_url’); ?>
Pingback URL for the site

<?php bloginfo(‘template_url’); ?>
Location …