Siteye temayı yerleştirdim. Ana sayfada 4 yazı otomatik olarak gözüküyor ve panelden ayalanıyor. Fakat 7 bölüm gözükmesini istiyorum. Kaynak kodları ile baya uğraştım fakat beceremedim

Yardımcı olursanız çok memnun olurum.
Dosyanın indirme adresi: Buradan
Problem olan kısım şudur. Aşağıda yazılı olan bölümü manuel olarak eklemek istiyorum. Nasıl manuel hale getirebilirim.
<!--post box 4 begin-->
<div class="post-box">
<div class="post-category">
<?php _e(stripslashes(get_option('qx_post-left_category4')),''); ?>
</div>
<?php
$postleft4= get_option('qx_post-left_category4');
$num = get_option('qx_post4_items');
$my_query = new WP_Query('category_name= '. $postleft4 .'&showposts='. $num.'');
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
if (in_category($postleft1)) continue;
if (in_category($postleft2)) continue;
if (in_category($postleft3)) continue;
if (in_category($postleft5)) continue;
if (in_category($postleft6)) continue;
if (in_category($postleft7)) continue;
?>
<div class="box1">
<div class="post-entry">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php
$values = get_post_custom_values("Image"); echo $values[0]; ?>&w=157&h=112&zc=1&q=100"
alt="<?php the_title(); ?>" class="thumb3" width="157px" height="112px" /></a>
<h3 class="post-box-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?>
</a></h3>
<?php content_limit(350, ""); ?>
<div class="read-more"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/read_more_posts.jpg" alt="Read More" /></a></div>
</div>
</div>
<?php endwhile; ?>
</div>
</div> <!--end posts-col-->
<?php
/*
To avoid duplicating posts on the home page, all post query must be in the same page.
because sidebar/rightcol has posts query. i put the homepage sidebar here :)
*/
?>
<div id="sidebar-home">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<div class="widget">
<?php if(get_option('qx_video_enable')==true) { ?>
<h2 class="sidebartitle"><?php _e('VIDEO'); ?></h2>
<div id="video">
<?php echo stripslashes(get_option('qx_video')); ?>
</div>
<?php } ?>
</div>Teşekkürler