我已经弄了几个小时,似乎无法弄清楚。我已经确认我的脚本已正确排队,并且控制台中没有错误。
这是我的HTML:
<section class="container">
<div class="row mt-5">
<?php while ( have_posts() ) : the_post(); ?>
<div class="col-sm-3">
<div class="blog-section-box">
<div>
<?php the_post_thumbnail(); ?>
</div>
<h4 class="my-4 blog-title">
<?php the_title(); ?>
</h4>
<div class="excerpt-underline excerpt-title">
<?php the_excerpt(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
</section>
这是我的js:
jQuery(function($) {
$('.blog-section-box').matchHeight();
})