<div class="wrapper">
<div class="tabs">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="tab"><?php the_title() ?></div>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- tabs -->
<div class="tab-content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="tab-item">
<?php the_excerpt() ?>
<a href="<?php the_permalink() ?>">Читать далее</a>
</div>
<?php endwhile; ?>
</div><!-- tab-content -->
<?php endif; ?>
</div><!-- wrapper -->
<script>
$('.tab-item').not(':first').hide();
$('.wrapper .tab').on('click', function() {
$('.wrapper .tab').removeClass('active').eq($(this).index()).addClass('active');
$('.tab-item').hide().eq($(this).index()).fadeIn();
}).eq(0).addClass('active');
</script>