A simple way to add a default thumbnail to your post. This plugin uses the default wordpress image upload. Choose from all thumbnails in the edit post view.
For theme usage:
<?php if(function_exists('wct_display_thumb')){ if(!wct_display_thumb()){ /* Optionally add code for no thumbnail. */ } } ?>
<?php
if(function_exists('wct_display_thumb')):
$style = 'style="padding:5px;"'; // extra styling.
$postId = $post->ID; // the id of the post.
if(!wct_display_thumb($style, $postId)):
/* Optionally add code for no thumbnail. */
endif;
endif;
?>




