如何增加特色缩略图的大小?

时间:2012-10-19 作者:Smart Shovon

当我打开任何帖子时,第一张图片会显示我的特色图片。我想增加这个尺寸。see it 或我已经试着从单身增加。php更改此代码

<p><img src="<?php echo get_template_directory_uri(); ?>/images/thumbnails/thumbnail-leadimg.jpg" width="610" height="320" alt="<?php the_title_attribute(); ?>" /></p> 
但它不起作用。我的原始代码

<p><img src="<?php echo get_template_directory_uri(); ?>/images/thumbnails/thumbnail-leadimg.jpg" width="610" height="225" alt="<?php the_title_attribute(); ?>" /></p>
我不明白我怎样才能改变它。我的网站http://www.dewdropzone.com .

3 个回复
最合适的回答,由SO网友:Fabien Quatravaux 整理而成

这可能是因为原始图像不够大。您可以通过CSS使图像显示更大:

.post_thumbnail{
    height: 320px
}

SO网友:Nicole

您可以尝试以下操作:

<!-- The Post Thumbnail function is active by default, but this line of php will make it display.-->
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" target="_blank"><?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(150,150, false), array("class" => "alignleft post_thumbnail")); } ?></a>
<!--Post Thumbnail Ends-->
无论图像大小如何,此部分都将控制缩略图的大小:

the_post_thumbnail(array(150,150, false) 

/* width, height, option to crop 
Generally the default is set to true in order to crop the image*/
它被包装在锚定(链接)标签中,因此如果用户想要查看原始图像大小,他们所要做的就是单击它以放大并以全尺寸查看。

您还可以通过功能标准化您的特色图像大小。php文件。只需将此添加到您的函数中。php:

add_theme_support(\'post-thumbnails\');

// If not the standard size, state your size too
set_post_thumbnail_size( 150, 150, false );
这将标准化特征图像缩略图的大小,而不是将大小属性放入主题模板文件中。

SO网友:mirage

如果您通过set\\u post\\u thumbnail\\u size()更改了缩略图的大小,则新的缩略图大小仅适用于新上载的图像。如果要查看现有图像的效果,需要重新生成所有缩略图。这有一个插件http://wordpress.org/extend/plugins/regenerate-thumbnails/

结束

相关推荐

How to handle thumbnails

我应该如何处理帖子缩略图?大多数人是否将它们放在自定义字段中?使用插件?ThemeForest上的主题如何处理此问题?不同的主题也会有不同的尺寸要求?所以从一个主题转移到下一个主题可能会导致很多问题?缩略图也可能有不同的大小