merhaba arkadaşlar. şurdaki olayı beceremedim. kodu nereye yapıştırmam gerekiyor.?
WordPress ile çok sayfalı yazılar hazırlamak | Cnkt
.
çok sayfalı yazılar
13
●801
- 12-11-2008, 16:43:52burda ne ile olduğunu anlasam, zaten ona göre cevap verirdim arkadaşım(!).Ersingo adlı üyeden alıntı: mesajı görüntüle
<?php if (have_posts())
ile başlayan kısımdan
<?php endwhile; ?>
arasında herhangi bir yere yerleştirebilirsin kodu. - 13-11-2008, 11:52:31Kimlik doğrulama veya yönetimden onay bekliyor.
<?php get_header(); ?> <div id="content"> <div id="contentleft"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><?php the_title(); ?></h1> <!--post text with the read more link--> <?php the_content('<div class="post-more">Read the rest of this entry »</div>'); ?> <!--for paginate posts--> <?php link_pages('<p><strong>Sayfalar:</strong> ', '</p>', 'number'); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> </div> <?php get_sidebar(); ?> </div> <!-- The main column ends --> <?php get_footer(); ?>Alıntı