Столкнулся с такой же проблемой. Не получается вывести тег, вернее он выводится пустой.
Вот мой код:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image = aq_resize( $img_url, 960, 460, true,true,true ); //resize & crop the image
$image_alt = get_post_meta( $image->id, '_wp_attachment_image_alt', true);
?>
<?php if($image) : ?>
<img src="<?php echo $image ?>" title="<?php the_title(); ?>" alt="<?php echo $image_alt; ?>" />
<?php endif; ?>
В чем мой ошибка? Подскажите кто в теме...