我坚持使用WordPress从我的缩略图帖子中为我的图片添加悬停标签。我该怎么做?我的意思是我的图像中悬停标签的文本框应该在哪里?我设法使用wp_query在我的页面中显示我的所有6个缩略图图像,现在我想在每个缩略图图像中放置一些悬停图像。我必须输入悬停图像以及如何输入?
以下是我显示缩略图图片的代码:
<?php
if( $offerBlog->have_posts() ) : ?>
<div class="row center-block">
<?php while ( $offerBlog->have_posts() ) : $offerBlog->the_post(); ?>
<div class="col-md-4 col-box">
<?php the_post_thumbnail(); ?>
<br>
<br>
<h4> <?php the_title(); ?></h4>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
以下是我想要的每个缩略图: