AliArslan adlı üyeden alıntı: mesajı görüntüle
index.php den bu sorunu halledeblrsn kod yapısı için header.php ye de bakablsn
usta buda header.php

<?php
$theme_options = get_option('SimpleBalance');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">

<head profile="http://gmpg.org/xfn/11">
	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
	<meta http-equiv="Content-Language" content="en" />
	<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
	<link rel="stylesheet" href="<?php echo $colorScheme; ?>" type="text/css" media="screen" />
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
	<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
	<link rel="shortcut icon" href="<?php bloginfo('url'); ?>/favicon.ico" />

	<?php wp_get_archives('type=monthly&format=link'); ?>

	<?php if ( is_single() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php start_template(); ?>
	<?php wp_head(); ?>
</head>

<body>
<div id="wrap">
	
	<div id="header">
		<div class="topLogo">
			<?php if (is_single() OR is_page()) { ?>
			<h2><a href="<?php echo get_settings('home'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h2>
			<?php
			} else { ?>
			<h1><a href="<?php echo get_settings('home'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
			<?php }	?>
			<?php if ($theme_options["display_description"] == 1) { ?><span class="blogDescription"><?php bloginfo('description'); ?></span><?php } ?>
		</div>

		<div class="topMenu">
		<ul>
			<li<?php if (is_home()) { ?> class="current_page_item"<?php } ?>><a href="<?php echo get_settings('home'); ?>" title="<?php bloginfo('name'); ?>">Anasayfa</a></li><?php qbkl_nospace(wp_list_pages('include='.$theme_options["top_menu_pages"].'&sort_column=menu_order&depth=1&title_li=')); ?>
		</ul>
		</div>

		<div class="topSearch">
			<form method="get" name="searchform" id="searchform" action="<?php bloginfo('home'); ?>">
				<input type="text" value="Site ici aramasi" name="s" class="s" onfocus="if (this.value == 'Search this blog...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this blog...';}" />
				<a href="javascript:document.searchform.submit();" class="searchSubmit">Arama</a>
			</form>
		</div>
	</div>