
I just released Black-Letterhead version 1.6.2. This latest version supports WordPress 2.9 scheduled for release within a week. WordPress 2.9 has a new feature called post thumbnails. It allows a thumbnail or an image to be displayed in each post. Previously, blog owners have been using plugins to have this feature available on their blogs.
Changes
Functions.php
To activate the post_thumbnail feature, the function has to be enabled in functions.php.
if (function_exists('add_theme_support')) add_theme_support('post-thumbnails'); |
Post.php
This entry is placed before the main content.
if (function_exists('the_post_thumbnail')) { the_post_thumbnail('post-thumbnail'); } |
Single.php
This entry is the same as above, but in single page mode.
if (function_exists('the_post_thumbnail')) { the_post_thumbnail('post-thumbnail'); } |
Index.php
Replaced navigation functions when viewing the home page.
Edited copyright information to include year 2010. Users can modify footer.
Copyright © 2003-2010
Download
[download#1]