我有一个循环(在wordpress中)抓取最新帖子的缩略图,标题和摘录,并以列格式显示在主页上。我想让包含每个帖子标题的div与最高标题的高度相同。
如果你可以将所有元素放在容器div中,我发现CSS可以工作,但我不知道如何去做。
任何帮助都会非常感激!
(编辑)
好的,这就是我正在使用的
<div class="col-sm-3 col-6 postbox">
<?php
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image = aq_resize( $img_url, 750, 500, true ); //resize & crop the image
?>
<?php if($image) : ?>
<div class="hthumb">
<a href="<?php the_permalink(); ?>"><img class="img-responsive" src="<?php echo $image ?>"/></a>
</div>
<?php endif; ?>
<div class="art_header">
<h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h3>
</div>
<div class="hometa"> <?php web2feel_posted_on(); ?> </div>
<?php the_excerpt(); ?>
</div>
这是我需要高度相同的部分。但它需要响应帖子标题的长度。
<div class="art_header">
<h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h3>
</div>
如果我没有提供所有信息,我对Wordpress有点生疏,请原谅我!