• 17-09-2009, 15:06:25
    #10
    Üyeliği durduruldu
    YouSuf adlı üyeden alıntı: mesajı görüntüle
    archive.php de <?php endwhile; ?> dan sonra aşağıdakileri ekleyip denermisin
    <?php next_posts_link('&laquo; Eski Yazılar') ?>
    <?php previous_posts_link('Yeni Yazılar &raquo;') ?>
    Denedım İşe yaramadı

    Arsıve.php
    <?php get_header(); ?>
      <div id="contents" class="clearfix">
      <div id="left_col">
      
      
    <?php if (have_posts()) : ?>
    
    
    <div id="headline">
    <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
     <?php if (is_category()) { ?>
     <p><?php printf(__('‘ %s ’ kategorisi altındaki tüm yazılar...'), single_cat_title('', false)); ?></p>
     
     <?php } elseif( is_tag() ) { ?>
     <p><?php printf(__('‘ %s ’ kelimesi ile ilgili yazılar'), single_tag_title('', false) ); ?></p>
    
     <?php } elseif (is_day()) { ?>
     <p><?php printf(__('% tarihinde yazılan yazılar...s'), get_the_time(__('j F Y', 'monochrome'))); ?></p>
    
     <?php } elseif (is_month()) { ?>
     <p><?php printf(__('%s ayında yazılan yazılar...'), get_the_time(__('F Y', 'monochrome'))); ?></p>
    
     <?php } elseif (is_year()) { ?>
     <p><?php printf(__('%s yılında yazılan yazılar...'), get_the_time(__('Y'))); ?></p>
    
     <?php } elseif (is_author()) { ?>
     <p>Yazar arşivi...</p>
    
     <?php } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
     <p>Blog arşivi</p>
    <?php } ?>
    </div>
    
    
    <?php while ( have_posts() ) : the_post(); ?>
        <div class="post">
    	
        
    	  		<div class="posttop"> </div>
    <div class="postmiddle">
    <div id="icon"><?php if (function_exists('get_cat_icon')) get_cat_icon(); ?></div>
    
           <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
    	   
    	   <div id="single_meta">	  
    <div id="dates"><?php the_time(__('j F Y', 'inove')) ?></div>
    <div id="com"><?php comments_popup_link(__('Yorum yapılmamış'), __('1 Yorum'), __('% Yorum')); ?></div>
    </div>
    
    	      <div class="post_content">
          
    	   <?php the_content(__('Devamını oku &raquo;')); ?>
    		<div class="pos"></div>
           </div>
    
    	   </div>
    <div class="postbottom"></div>
    
        
    
        </div>
    <?php endwhile; else: ?>
    
    
    
    
    
    
    <div class="posttop"> </div>
    <div class="postmiddle">
    <?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
    </div>
    <div class="postbottom"></div>
    <div class="archive_contents">
     <p><?php _e("Sorry, but you are looking for something that isn't here.","monochrome"); ?></p>
    </div>
    <?php endif; ?>
    
    
    </div><!-- #left_col end -->
    
    <?php get_sidebar(); ?>
    
    </div><!-- #contents end -->
    
    
    <?php get_footer(); ?>
  • 17-09-2009, 15:40:34
    #11
    Ordan bunu sil; <?php endwhile; else: ?>

    Ve sildiğin yere aşağıdakileri ekle;

    Alıntı
    <?php endwhile; ?>
    <?php next_posts_link('&laquo; Eski Yazılar') ?>
    <?php previous_posts_link('Yeni Yazılar &raquo;') ?>
    <?php else : ?>
  • 17-09-2009, 15:47:34
    #12
    Üyeliği durduruldu
    YouSuf adlı üyeden alıntı: mesajı görüntüle
    Ordan bunu sil; <?php endwhile; else: ?>
    Ve sildiğin yere aşağıdakileri ekle;
    yaptım düzeldi rep ını verdım ayrıca tsk ederım ama boyle gorunuyor :



    gerekli eklentıler var ama neden boyle cıktı anlamadım
  • 17-09-2009, 16:05:23
    #13
    Rica ederm..

    Genel kod bu şekildedir, bu kodları css yazdımıyla bir div e alarak birbirinden ayırabilirsiniz.
  • 17-09-2009, 16:09:19
    #14
    Üyeliği durduruldu
    YouSuf adlı üyeden alıntı: mesajı görüntüle
    Rica ederm..
    Genel kod bu şekildedir, bu kodları css yazdımıyla bir div e alarak birbirinden ayırabilirsiniz.
    Nasıl ayıracağımı hatta kutu ıcıne alacağımı bilmiyorum Rice etsem yardımcı olsan ?
  • 17-09-2009, 16:38:34
    #15
    En basitinden şu şekilde bişe yapabilirsin

    Alıntı
    <center><b><?php next_posts_link('&laquo; Eski Yazılar') ?> -
    <?php previous_posts_link('Yeni Yazılar &raquo;') ?></b></center>