HTML:
<div class="wrapper">
<div class="tabs">
<span class="tab">Вкладка 1</span>
<span class="tab">Вкладка 2</span>
<span class="tab">Вкладка 3</span>
</div>
<div class="tab-content">
<div class="tab-item">Содержимое 1</div>
<div class="tab-item">Содержимое 2</div>
<div class="tab-item">Содержимое 3</div>
</div>
</div>
jQuery:
$('.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');
CSS:
.wrapper .active { color: red; }
<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>
<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>
<div class="main">
<div>
<div class="panel">
<?php query_posts('cat=8');
while (have_posts()) : the_post(); ?>
<div class="panel-heading">
<a href="#"><h3><?php the_title() ?></h3></a>
</div>
<div class="panel-collapse">
<div class="panel-body">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; wp_reset_query(); ?>
</div>
</div>
</div>
<div class="main">
<div>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="panel">
<div class="panel-heading">
<a href="#1"><i class="fa fa-trophy"></i><?php the_title() ?></a>
</div>
<div class="panel-collapse">
<?php the_excerpt() ?>
<div class="button"><a href="<?php the_permalink() ?>">Read more</a></div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>