我不知道TimThumb是否真的有必要。您可以使用内部WordPress函数轻松地做到这一点
将此代码添加到函数中。php:
<?php
add_theme_support( \'post-thumbnails\' ); // this enable thumbnails
add_image_size( \'preview-thumb\', 300, 185, true ); //this sets your default size
?>
使用以下代码而不是上面的代码。
<div class="main">
<div class="view view-first">
<h4><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h4>
<div class="myimage">
<?php
if ( has_post_thumbnail())
{
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), \'preview-thumb\' );
echo \'<img src="\' . $thumb[0] . \'">\';
} else {
echo \'No post thumbnail.\';
}
?>
</div>
<div class="mask">
<?php
if ( has_post_thumbnail())
{
$full = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), \'full\' );
echo \'<a href="\' . $full[0] . \'">Some text.</a>\';
} else {
echo \'No post thumbnail.\';
}
the_content_limit($hp_mid_content_length,\'\');
?>
</div>
</div>
</div>
然后跟随
these steps 添加帖子缩略图。