Ben benim ihtiyaçlarına uygun Single.php düzenlenmiş ettik ve çalışır. Sadece aşağıdaki gibidir ki içinde döngünün parçası sol:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
It only displayes the text, like I want it to. The problem I get is when I add the following code to be used as the sidebar in the template;
<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title(); ?>">
<?php the_title(); ?></a><br />
<?php endwhile;?>
Bu son 10 mesaj başlığını göstermesi gerekir. Ama şimdi döngü yerine de permalink ait sadece tek bir yazının (full0 10 mesaj son görüntülüyor ... Ben bir değişken ya da böylece yeniden ve dinlenme gerekir ediliyor .. single.php de unutmayın düşünüyorum İlk sen 'kenar çubuğu' kodunu almak ve sonra 'loop' kod olsun.
Peki neden bu şekilde davrandığını wordpress?