<div class="tabber">
<div class="tabbertab">
<h2>Таб1</h2>
<?php if (is_home()) { query_posts($query_string.'&cat=6&showposts=5'); } ?>
</ul>
</div>
<div class="tabbertab">
<h2>Таб2</h2>
<?php if (is_home()) { query_posts($query_string.'&cat=7&showposts=5'); } ?>
</ul>
</div>
<div class="tabbertab">
<h2>Таб 3</h2>
<?php
$result = $wpdb->get_results("SELECT comment_count,ID,post_title,post_author FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 4");
foreach ($result as $topten) {
$postid = $topten->ID;
$title = $topten->post_title;
$commentcount = $topten->comment_count;
if ($commentcount != 0) {
?>
<div class="comments2" ><a href="<?php echo get_permalink($postid); ?>"><?php echo $title; ?> (<?php echo $commentcount; ?>)</a></div>
<?php } } ?>
</div>
</div>