Themes
Jon Asked: How to add thumbnails above post on the THiCK theme
I was asked by a reader:
I’m using the THiCK theme for my new design blog. I noticed you were able to add thumbnail images above your blog posts on the home page. What would I need to do to enable this on my blog?
Well Jon, this can be done very simple, since the theme is already using the Tim Thumb script.
What you will need to do is find in your index.php
file, the second loop. Which you can find on line 40
.
<?php query_posts('offset=1&showposts=' . get_option('woo_other_entries') . '&cat=-' . $GLOBALS['ex_asides'] ); ?> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="post-meta"><?php the_time('j/m/y'); ?> <span>|</span> <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></div> <?php the_excerpt(); ?> </div> <?php endwhile; ?>
Now we are going to add in the code. At line 43
we are going to add:
<?php if (get_option('woo_resize')) { // Check if we should use the image resizer ?> <a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&h=80&w=280&zc=1&q=90" alt="<?php the_title(); ?>" /></a> <?php } else { ?> <a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo get_post_meta($post->ID, "image", $single = true); ?>" alt="<?php the_title(); ?>" /></a> <?php } ?>
That’s it, just make sure that in the THiCK options panel you choose the “resize” option, or the image might break the layout. Or you may change the this code: $post->ID, "image",
to: $post->ID, "image_thumb",
and use a separate image for the lower blog.
Premium
WP Realtor
The Ultimate WordPress Real Estate theme with custom developed plugins, single and multiple agents, extensive listing features and personalized search.
- Beautiful, elegant themes
- Five colors included: sea blue, red, navy blue, gold and black
- Agent can publish picture with biography
- Top-Level link to add property listing
- Easily publish your home details (including bathrooms, bedrooms, images and lots more)
- “No Custom Fields” to hassle with when posting property details and images
- Images are auto thumb-nailed and display full-size with a cool pop-up slide-show
- Featured properties rotate on home page with agent
- Cool Property Search Options – includes drop downs and search box
- Agents page to display biography and properties for sale
- Payment Calculator
- Ad Banner Management
- 100+ hours into programming, designing and preparing these themes for you.
- Real Estate Dream Plugin to easily manage your properties
- Drop Down Menu Manager (used to create customized search options)
- Agent Photo Up loader
Exclusive New Plugins built just for this theme.
This is the info taken from the Plug and Press Bel Air Theme site.
Price:
Single Use: $99 $79.95 Buy Now!
Multiple Use: $179.95 Buy Now!
Developers: $279.95 Buy Now!
Premium
CelebrityPress Fashion

Celebrity Press is a sexy premium WordPress theme ideal for running a Gossip / Celebrity Online Magazine website. The package includes two colors and 5 different samples with two plain, and three pattern background themes as well as one style to upload your own logo. The theme also has an Options Interface where you can manage your own advertisement campaign, and a video rotator allowing you to simply copy and paste the share code from video sites such as YouTube, Daily Motion, and Metacafe.
- default
- Fresh
- White
Features:
23 Colors (Black, White & Fresh + Blank Wire Frame)23 background samples- Add your Adsense or Image Link Code
- Turn all-or-individual banners on/off
- Quick Post – No need to put an image
- Image Auto Resizer
- Random Video Rotator (copy/paste code)
- Flickr Integration
- Build your Own Menu from the Theme Options
- Photo Gallery
- Drop Down Menu (Build your Own)
- Customized Error page with sitemap
- Ad your own Logo and Styles Easily
- Unique Post Randomizer
- Gravatar Support
- Main News Section
- Widget Ready
- Customized Archives and Search Pages
- Stylesheet switcher
- Feedburner Integration
- Extensive help and tutorial included
- IE6, IE7, Firefox, Safari and Opera compatible
- XHTML and CSS Valid
Price:
Standard: $39.95 Buy Now!
Premium: $59.95 Buy Now!
Deluxe: $99.95 Buy Now!

Themes
Thematic Framework
I guess I will show off the the theme which I am using for this site, WPCult! Thematic Theme Framework by Ian Stuart
Though I have the framework in place, his latest version 0.7 has been heavily modified to fit this site :). Thanks Ian.
-
Tips & Tricks4 months ago
WordPress Security Hacks
-
Pages6 months ago
Write For Us – Guest Post
-
Showcase7 months ago
StylizedWeb.com
-
News6 months ago
How to: Show/Hide any div box with jQuery in WordPress
-
Tips & Tricks5 months ago
Remove the title attribute using jQuery
-
Tips & Tricks3 months ago
How to: show/hide a widget in WordPress with jQuery
-
Plugins3 months ago
Top Membership plugins
-
Tips & Tricks7 months ago
Limit the characters that display on the_title
You must be logged in to post a comment.