• 29-07-2010, 01:15:35
    #1
    Üyeliği durduruldu
    Arkadaşlar,

    Blogumdaki yazılara yorum eklenebiliyor ancak sayfalara (pages) eklenemiyor. Bunun temadan kaynaklanan bir sorun olduğunu biliyorum, nasıl çözebilirim?
  • 29-07-2010, 04:46:44
    #2
    Sayfa oluştururken. "Yorumlara izin ver" seçeneğini ne yaptın?
  • 29-07-2010, 13:31:45
    #3
    Üyeliği durduruldu
    Sorun 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 &raquo;</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:41
    #4
    Pek 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 &raquo;</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(); ?>