Read below about related content about wordpress+post+thumbnail+caption, You can contact us to improve our contents and site quality

How To Integrate Images Shortcode with TimTumb

August 24th, 2010 By WP Tricks Posted in Tricks

Every WordPress Developer has seen that TimTumb is wonderful script, This script is better handle to resize image on the fly and display it what ever size we want and we need. Let’s me show you How To Integrate Images Shortcode with TimTumb. The idea is simple. We will use the power of TimThumb and generated better thumbnail and added in our content using shorcode. We got this tricks from Free WordPress Themes designer.

Images Shortcode with TimThumb - Lucy Pinder Nuts August 2010 Photo

Images Shortcode with TimThumb - Lucy Pinder Nuts August 2010 Photo


Read the rest of this entry »

Amazing Touch

Added Custom Size on Your Post Thumbnails

August 3rd, 2010 By WP Tricks Posted in Tips

Chadcoleman created wonderful tutorials, how to added Custom Size Post Thumbnail. All we need to do only put some functions and use it whatever and whenever you want.

Custom Size Thumbnail - Avril Lavigne

Custom Size Thumbnail - Avril Lavigne

Added this code on your functions.php

if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
	add_theme_support( 'post-thumbnails' );
	set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails
	add_image_size( 'my-custom-size', 405, 180, true );
}

That it’s, you have new custom size for you thumbnail and you can call it with Post Thumbnail Tricks

Amazing Touch

Post Thumbnail on RSS Feed

June 13th, 2010 By WP Tricks Posted in Tips

Jeff Starr give nice tricks how To Added Post Tumbnail in our RSS Feed, and I will show you on today wordpress tips. This code only need tiny hack, we put some code in our functions.php and the code will be execute automatically using add_filter method.

Added Post Thumbnail on Feed - Megan Fox Jonah Hex

Added Post Thumbnail on Feed - Megan Fox Jonah Hex


Read the rest of this entry »

Amazing Touch