bueno me baje el theme y lo probe , haremos lo siguiente para no usar el archivo timthumb ya que consume mucho con altas visitas, buscaremos en el archivo functions.php
PHP:
// Show Post Thumbnails
function tj_show_thumb($width = 100, $height = 100) {
?>
<a rel="nofollow" href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/includes/timthumb.php?src=<?php tj_get_image($post->ID, 'full'); ?>&h=<?php echo get_theme_mod($height); ?>&w=<?php echo get_theme_mod($width); ?>&zc=1" alt="<?php the_title(); ?>" /></a>
<?php
lo cambiaremos por
PHP:
// Show Post Thumbnails
function tj_show_thumb($width = 100, $height = 100) {
?>
<a rel="nofollow" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img src="<?php $values= get_post_custom_values("thumb"); echo $values[0]; ?>"alt="<?php the_title(); ?>" class="left" width="<?php echo get_theme_mod($width); ?>" height="<?php echo get_theme_mod($width); ?>"></a>
<?php
y debe funcionar, usando el campo personalizado llamado thumb , al momento de crear una entrada, lo he probado y funciona dejo una imagen
Enlace eliminado
espero te sirva, saludos