Código PHP:
<a href="<?php echo esc_url( $link ); ?>">
<?php
$width = apply_filters( 'slider_image_width', 960 );
$height = apply_filters( 'slider_image_height', 295 );
$title = get_the_title();
$thumbnail = get_thumbnail( $width, $height, '', $title, $title, false, 'Featured' );
$thumb = $thumbnail["thumb"];
print_thumbnail( $thumb, $thumbnail["use_timthumb"], $title, $width, $height, '' );
?>
</a>