Arkadaşlar wordpress tema da 2. kod var 1. si yok. Neresine ekleyebilirim başlangıç kodunu?
<?php get_header(); ?>

		<div class="col1">

		<?php if (have_posts()) : ?>
	
			<?php while (have_posts()) : the_post(); ?>		

				<div id="archivebox">
					
						<h3><em>Kategori |</em> <?php the_category(', ') ?></h3>
						<!-- google_ad_section_end--><?php if (function_exists('the_tags')) { ?><div class="singletags"><?php the_tags('Tags : ', ', ', ''); ?></div><?php } ?>       
				
				</div><!--/archivebox-->			

				<div class="post-alt blog" id="post-<?php the_ID(); ?>">
				
					<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
					<h3 class="post_date">Tarih <?php the_time('d F Y'); ?>  <?php the_author(); ?></h3>
		
					<div class="entry">
						<?php the_content('<span class="continue">Continue Reading</span>'); ?> 
					</div>
				
				</div><!--/post-->
				
				<div id="comment">
					<?php comments_template(); ?>
				</div>

		<?php endwhile; ?>
		
		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
		</div>		
	
	<?php endif; ?>							

		</div><!--/col1-->

  



<?php get_sidebar(); ?>

<?php get_footer(); ?>