<div class="col11">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('footer-column1') ) : ?>
<h3><?php _e("Популярные записи"); ?></h3>
<?php $result = $wpdb->get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 3");
foreach ($result as $post) {
setup_postdata($post);
$postid = $post->ID;
$title = $post->post_title;
$commentcount = $post->comment_count;
if ($commentcount != 0) { ?>
<ul>
<li><a href="<?php echo get_permalink($postid); ?>" title="<?php echo $title ?>">
<?php echo $title ?></a> <small>Комментариев: (<?php echo $commentcount ?>)</small></li>
</ul>
<?php } } ?>
<?php endif; ?>
</div>
<div class="col12">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('footer-column2') ) : ?>
<h3><?php _e("Рубрики"); ?></h3>
<ul><?php wp_list_categories('orderby=id&limit=5&show_count=0&sort_column=name&title_li=&depth=1'); ?></ul>
<?php endif; ?>
</div>
<div class="col13">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('footer-column3') ) : ?>
<h3>Метки</h3>
<?php wp_tag_cloud('format=list&number=10&orderby=count&unit=12'); ?>
<?php endif; ?>
</div>
<div class="col14">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('footer-column4') ) : ?>
<h3><?php _e("Страницы"); ?></h3>
<ul><?php wp_list_pages('title_li=&depth=1&sort_column=menu_order'); ?></ul>
<?php endif; ?>
</div>