单击缩略图时,我必须在帖子缩略图下方添加一行(包含帖子内容)。我已经用这个做了,但它会影响相邻的帖子缩略图。我想,一个完整的行被添加到每个职位下面,而不影响其他职位。每个帖子的缩略图应该保持不变。
<?php
$args = array(\'post_type\' => \'team\', \'category_name\' => $a);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
?>
<div class="tab_heading col-md-4">
<div class="wrapper">
<a href="#tab-<?php echo get_the_id(); ?>">
<div class="bg_image">
<?php the_post_thumbnail(); ?>
</div>
</a>
<p class="title-post">
<?php the_title(); ?>
</p>
</div>
</div>
<div class="tab" style="">
<div id="tab-<?php echo get_the_ID(); ?>" class="tab-content">
<div class="row">
<?php the_content(); ?>
</div>
</div>
</div>
<?php
}
}
wp_reset_query();
?>
这是我想要的设计图。
当我点击时我想要它sofia
我添加了一行,其中包含特定帖子的\\u内容。我的英语很抱歉。