0

我很陌生Wordpress。我想知道如何image width and height size定义featured image?我希望我的所有图像都应该是100 X 100 px. 那么该怎么做呢?欢迎任何帮助和建议。

4

5 回答 5

1

你可以试试这样的东西

于 2012-10-12T11:22:25.890 回答
1

使用此代码并调整您的特色图像大小

<?php query_posts('cat=ID'.'&showposts=NO. OF POST') ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<!-- Thumbnail part start-->
<div style="100px"; width="100px";><?php the_post_thumbnail(); ?></div>
<!-- Thumbnail part End-->
<p><?php echo substr(get_the_excerpt(), 0,65).' [...]'; ?></p>
<a href="<?php the_permalink(); ?>">Read More...</a>


<?php endwhile; ?>
<?php wp_reset_query(); ?>
 <?php endif;?>
于 2012-10-12T11:40:20.180 回答
1

设置新的帖子缩略图大小后,您必须重新构建缩略图,因为 Wordpress 已经构建了它们。

为此,您可以使用例如这个插件,但请记住,它以存在安全问题而闻名。我的建议是安装它,重新生成缩略图,使它们具有您设置的新大小,然后卸载它。

希望这可以帮助。干杯。

于 2012-10-12T11:46:10.860 回答
0

在你的 function.php 文件中使用类似的东西

<?php add_image_size( $name, $width, $height, $crop ); ?>

参数将在哪里

$name (string) (required) The new image size name.

$width (int) (optional) The post thumbnail width in pixels.

$height (int) (optional) The post thumbnail height in pixels.

$crop (boolean) (optional) Crop the image or not. False - Soft proportional crop mode ; True - Hard crop mode.

有关更多信息,请查看wordpress codex文档。

于 2012-10-13T03:56:42.187 回答
0

把这一行放在add_image_size('thumb',100,100,TRUE);functions.php中

并在任何你想要的地方调用它the_post_thumbnail('thumb');

有关更多信息,请查看该链接:http ://codex.wordpress.org/Function_Reference/add_image_size

于 2012-10-12T12:17:34.277 回答