millet ne dediğinide bilmiyor artık sanırım.Site senin mi degil o zaman susacaksın .Yaparım yapmam keyifde benim. konularıma yazmadan önce izin almalısın.

@winnt hocam ekledım ama yine olmadı tam kod bu şekılde.

	<div id="sidebar">	
 
		<div id="left-sidebar">
		reklam left sidebara
			<h3 id="content-title"><?php _e('Kategoriler') ?></h3>
			<ul>
				<?php wp_list_categories('title_li=&sort_column=name&hide_empty=1&use_desc_for_title=1&exclude=2'); ?>
			</ul>
 
			<?php if(class_exists('SimpleTagging')) : ?>
			<h3 id="content-title"><?php _e('Popüler Etiketler') ?></h3>
			<ul>
				<?php STP_Tagcloud(); ?>
			</ul>
			<?php endif; ?>

			<h3 id="content-title"><?php _e('Arşiv') ?></h3>
			<ul>
				<?php wp_get_archives('type=monthly'); ?>
			</ul>
		</div>
 
 
		<div id="right-sidebar">
sağ
			<div id="area-usuario" class="block">
				<h3 id="content-title">ÜYE<span class="dark"> GİRİŞİ</span></h3>
				<?php
				  global $user_ID, $user_identity;
				  get_currentuserinfo();
				  if (!$user_ID):
				?>
					<form name="loginform" id="loginform" action="<?php echo get_settings('siteurl'); ?>/wp-login.php" method="post">
					<div><label><?php _e('Username') ?>:<br /><input type="text" name="log" id="log" value="" class="text user" /></label><br />
					<label><?php _e('Password') ?>:<br /> <input type="password" name="pwd" id="pwd" value="" class="text passwd" /></label><br />
					<input type="hidden" name="rememberme" value="forever" />
					<input type="submit" name="submit" value="<?php _e('GİRİŞ'); ?>" class="button" /><br />
					<p class="links">
					  <a href="<?php echo get_settings('siteurl') . '/wp-register.php'; ?>"><?php _e('KAYIT'); ?></a> | 
					  <a href="<?php echo get_settings('siteurl') . '/wp-login.php?action=lostpassword'; ?>"><?php _e('Şifremi Hatırlat'); ?></a>
					</p>
					<input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>"/></div>
					</form>
				<?php else:	?>
					<p class="user-info">Merhaba, <strong><?php echo $user_identity; ?></strong>.</p>
					<ul>
						<li><a href="<?php echo get_settings('siteurl') . '/wp-admin/profile.php'; ?>" title="PROFİLİM"><?php _e('PROFİLİM'); ?></a></li>
						<li><a href="<?php echo get_settings('siteurl') . '/wp-login.php?action=logout&amp;redirect_to=' . $_SERVER['REQUEST_URI']; ?>" title="ÇIKIŞ"><?php _e('ÇIKIŞ'); ?></a></li>
					</ul>
				<?php endif; ?>
			</div>

			<div id="ultimos-artigos" class="block">
				<h3 id="content-title">Son <span class="dark">Klipler</span></h3>
				<!-- mostra os 10 artigos mais recentes -->
				<?php query_posts('showposts=10'); ?>
				<ul>
					<?php while (have_posts()) : the_post(); ?>
					<li><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></li>
					<?php endwhile;?>				
				</ul>
			</div>

			<div id="artigos-mais-lidos" class="block">
				<h3 id="content-title">Popüler <span class="dark">Olanlar</span></h3>
				<ol>
					<?php //akpc_most_popular(); ?>
				</ol>
			</div>

			<?php if(function_exists('get_recent_comments')) : ?>
			<div id="ultimos-comentarios" class="block">
				<h3 id="content-title">Son <span class="dark">Yorumlar</span></h3>
				<ul>
					<?php get_recent_comments(); ?>
					 
				</ul>
			</div>
			<?php endif; ?>
	
			<!--
			<div id="publicidade" class="block">
				<h3 id="content-title">Advertisement</h3>
				<p><a href="http://www.google.com.br/adsense"><img src="<?php bloginfo('template_directory'); ?>/img/temp/banner_adsense_120x240.gif" width="120" height="240" alt="Banner Adsense" /></a></p>
			</div>
			-->
		</div>
	</div>
	</ul>
</div>