wordpressden anladigim pek soylenemez. Webmsterda degilim yeni yeni olacagiz insallah
editorden girince index.php dekiler bunlar...

<?php include (TEMPLATEPATH . '/header.php'); ?>
	<div id="page">

	
<?php
		if (isset($theme_options["show_featured"]) && isset($theme_options["featured_id"]) && $theme_options["featured_id"]!="") {
		}
		?>

		<?php
		if (!isset($theme_options["layout_style"]) || $theme_options["layout_style"] == "scs") {
			include (TEMPLATEPATH . '/lsidebar.php');
		}
		?>


		<div id="content">


			<?php include (TEMPLATEPATH . '/topads.php'); ?>

			<?php if(is_home() && !is_paged() && isset($theme_options["show_featured"]) && isset($theme_options["featured_id"]) && $theme_options["featured_id"]!="") { include (TEMPLATEPATH . '/featuredpost.php'); } ?>
			
		<?php
		$temp = $wp_query;
		$wp_query= null;

		if(is_home() && !is_paged() && isset($theme_options["show_featured"]) && isset($theme_options["featured_id"]) && $theme_options["featured_id"]!="") {
			add_filter( 'posts_where', 'exclude_posts' );
			function exclude_posts( $where ) {
				global $wpdb;
				$theme_options = get_option('SimpleBalance');

				$whereExt =  " AND $wpdb->posts.ID != ".$theme_options["featured_id"];

				return $where . $whereExt;
			}
		}

		$wp_query = new WP_Query();
		$wp_query->query('&paged='.$paged);

		?>

		<?php if (have_posts()) : ?>
			<?php
			$postCount = 0;
			if (isset($theme_options["home_fullposts"])) {
				$featLimit = $theme_options["home_fullposts"];
			}
			else {
				$featLimit = 1;
			}
			?>
			<?php
			while (have_posts()) : the_post();
			if (isset($theme_options["show_featured"]) && isset($theme_options["featured_id"]) && $theme_options["featured_id"]!="" && $post->ID == $theme_options["featured_id"]) {				
				continue;
				update_post_caches($posts);
			}
			$postCount++;
			?>


			<div class="post">
				<div class="postTitle"><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2></div>
				<div class="postInfo">Yazi hakkinda <?php the_time('F dS, Y'); ?> ve <?php the_category(', ') ?> <?php edit_post_link('edit', '(', ')'); ?></div>

				<div class="postContent">
				<?php
				if (isset($theme_options["home_excerpts"]) && $theme_options["home_excerpts"] == 0) {
					the_content('<br />Continue reading '.get_the_title('', '', false));
				}
				else {
					if (is_home() && !is_paged() && $postCount <= $featLimit) {
						the_content('<br />Continue reading '.get_the_title('', '', false));
					}
					else {
						the_excerpt();
					}
				}
				?>
				</div>




				<?php if(function_exists('the_tags')) { ?><div class="postExtras">
					<strong>Etiketler:</strong> <?php the_tags('', ', ', ''); ?></div><?php } ?>
				
				<div class="postMeta">
					<span class="postLink"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">Konuyu oku</a></span>
					<?php
					$comNo = get_comment_type_count('comment'); // Checking if there are any actual comments (trackbacks and pingbacks excluded)

					if ($comNo == 1 ) {
					?>
					<span class="postComments"><?php comments_popup_link('Add your comment', 'Read 1 comment', 'Read '.$comNo.' comment'); ?></span>
					<?php }
					elseif ($comNo > 1) {
					?>
					<span class="postComments"><?php comments_popup_link('Add your comment', 'Read 1 comment', 'Read '.$comNo.' comments'); ?></span>
					<?php }
					else {
					?>
					<span class="postComments"><?php comments_popup_link('Add your comment', 'Add your comment', 'Add your comment'); ?></span>
					<?php } ?>
				</div>
			</div>
			<?php endwhile; ?>

			<div class="navigation">
				<div class="left"><?php previous_posts_link('&laquo; Newer posts') ?></div>				
				<div class="right"><?php next_posts_link('Older posts &raquo;') ?></div>
			</div>

			<?php $wp_query = null; $wp_query = $temp;?>


			<?php else: ?>
			Bulunamadi.
			<?php endif; ?>
		</div>

		<?php
		if (isset($theme_options["layout_style"]) && $theme_options["layout_style"] == "css") {
			include (TEMPLATEPATH . '/lsidebar.php');
		}
		?>

		<?php include (TEMPLATEPATH . '/rsidebar.php'); ?>

	</div>

<?php include (TEMPLATEPATH . '/footer.php'); ?>