Arkadaşlar,
Blogumdaki yazılara yorum eklenebiliyor ancak sayfalara (pages) eklenemiyor. Bunun temadan kaynaklanan bir sorun olduğunu biliyorum, nasıl çözebilirim?
Sayfalara Yorum
3
●352
- 29-07-2010, 01:15:35Üyeliği durduruldu
- 29-07-2010, 13:31:45Üyeliği durdurulduSorun sayfa ayarlarında değil, tema kodlarında. page.php dosyasında yorum yeri yok.
<?php get_header(); ?> <div class="left"> <div class="right_side"> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entrytext"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> </div> </div> <div class="header_bottom"></div> <?php get_footer(); ?>
Yorum bölümü nasıl ekleyebilirim? - 29-07-2010, 15:17:41Pek fazla bilgim olduğu söylenemez ama page.php'deki kodunu şu şekilde değiştirirsen belki düzelebilir;
<?php get_header(); ?> <div class="left"> <div class="right_side"> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entrytext"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> </div> </div> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> <div id="yorumlar"> <?php comments_template(); ?> </div> <?php endwhile; endif; ?> </div> </div> </div> <div class="header_bottom"></div> <?php get_footer(); ?>