It didn’t parsed correctly, the code caused the side bar to crash completely with a fatal error, do you know where I would have to put the code?. Here is the full code in the “section”
<div class=”section”>
<p class=”splitter minor”><span>Top 5 Popular Articles</span></p>
<?php
query_posts(‘meta_key=post-counter&order=DESC&orderby=meta_value_num&showposts=5’);
if (have_posts()) :
$i = 1;
while ( have_posts() ) : the_post()
?>
<li class=”post top5 clearfix”>
” class=”post_link”>
<span class=”top5_number”><?php echo $i;?></span>
<span class=”post_image_frame”><img class=”thumb” src=”<?php bloginfo(‘template_directory’); ?>/includes/timthumb.php?src=<?php echo urlencode(tj_get_image($post->ID, ‘full’)); ?>&h=60&w=100&zc=0″ alt=”<?php the_title(); ?>” /></span>
<strong class=”entry-title”><?php the_title();?>
<?php $i++; endwhile; endif; wp_reset_query();?>
</div>