gpt4 book ai didi

html - 设置 WordPress 缩略图帖子的大小

转载 作者:行者123 更新时间:2023-11-28 08:51:33 26 4
gpt4 key购买 nike

我创建了按类别 ID 获取帖子缩略图的函数。这是代码:

<div class="row text-center">
<?php
foreach ( $wp_query->posts as $single_post)
{
$single_post_ID = $single_post->ID;
$url = wp_get_attachment_url( get_post_thumbnail_id($single_post_ID, 'medium') );
?>
<div class="col-md-3 col-sm-6 hero-feature">
<div class="thumbnail">
<img src="<?php echo $url ?>" />
<div class="caption">
<h2><?php echo get_the_title( $single_post_ID ); ?></h2>
<p>
<a href="#" class="btn btn-primary">Commander</a>
<a href="#" class="btn btn-default">Plus Info</a>
</p>
</div>
</div>
</div>
<?php } ?>
</div>

我想使用 wordpress 函数将缩略图的大小设置为 800px x 500px。
谢谢

最佳答案

据我所知,您的 WordPress 函数会在 .thumbnail 中输出您的图像。所以做这件事

 .thumbnail {
width: 800px;
height: 500px;
overflow: hidden; /* Cuts off whatever goes beyond the given width */
}


.thumbnail img {
width: 100%; /* 100% equals 800px as defined for .thumbnail */
height: auto; /* Allows the image a breathing option so it doesn't deteriorate */
}

注意:包含的元素已经有给定的宽度(800px)所以图像不会超过800px

关于html - 设置 WordPress 缩略图帖子的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27318830/

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