gpt4 book ai didi

wordpress - 如何仅设置 WordPress 缩略图的图像宽度

转载 作者:行者123 更新时间:2023-12-03 07:25:15 24 4
gpt4 key购买 nike

我正在尝试使用以下方法设置帖子缩略图的宽度:

the_post_thumbnail()

图像的宽度需要为210px,但高度并不意味着是固定的,因为所有图像的尺寸都不同。我尝试过:

the_post_thumbnail( array( 210, 0 ) ) 

但这不起作用。有什么想法吗?

谢谢。

最佳答案

将其添加到您的functions.php中

if ( function_exists( 'add_image_size' ) ) { 
add_image_size( 'category-thumb', 210, 9999 ); //210 pixels wide (and unlimited height)

}

在主题的模板文件中使用它

<?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'category-thumb' ); } ?>

对于默认缩略图,将其添加到您的functions.php中

if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 9999 ); // default Post Thumbnail dimensions
}

引用: Here .

关于wordpress - 如何仅设置 WordPress 缩略图的图像宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9739968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com