Arkadaşlar normal olarak bunu wp-admin/options-writing.php sekmesinden değiştirebileceğimi biliyorum. Ancak bazı temalar bunu desteklemiyor daha önceki temam da index.php dosyasın da showposts=5 kırmızı olarak gösterdiğim yeri değiştirerek yazı sayısını ayarlıyordum ancak bu yeni tema da öyle birşey yok.

Tema index.php kodları, yardımlarınızı bekliyorum arkadaşlar, teşekkürler.

<?php get_header(); ?>

<div class="entry">
<script type="text/javascript"><!--
google_ad_client = "pub-**************";
/* 468x60, oluşturulma 13.09.2010 */
google_ad_slot = "***********";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
	<?php if (have_posts()) : ?>

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

			<div class="post" id="post-<?php the_ID(); ?>">
				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="allinfos"><?php the_time('F jS, Y') ?> <span class="comments"><?php comments_popup_link('No Comments &nbsp;', '1 Comment &nbsp;', '% Comments &nbsp;'); ?> </span> <span class="category">Posted in <?php the_category(', ') ?></span> <!-- by <?php the_author() ?> --></div>

					<?php the_content('More &raquo;'); ?>


<div class="allinfos"><br /><?php the_tags('Tags: ', ', ', ' '); ?> <?php edit_post_link('| Edit', '', ''); ?></div>
			</div>
<div class="doth"></div>
		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
		</div>

	<?php else : ?>

		<h2 class="center">Not Found</h2>
		<p class="center">Sorry, but you are looking for something that isn't here.</p>
		<?php include (TEMPLATEPATH . "/*******.php"); ?>

	<?php endif; ?>

	</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>