• 10-06-2010, 15:04:20
    #10
    index php bu şekilde
    <?php get_header(); ?>
    		<div class="span-24" id="contentwrap">
    			<div class="span-16">
    				<div id="content">	
                    <?php if(is_home()) { include (TEMPLATEPATH . '/featured.php'); } ?>		
    					<?php if (have_posts()) : ?>	
    					<?php
    if (is_home()) {
    query_posts("cat=15");
    }
    ?>
    						<?php while (have_posts()) : the_post(); ?>
    						
    						<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                                
    							<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    							<div class="postdate">Yazar : <strong><?php the_author() ?></strong> | Tarih : <?php the_time('F jS, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Düzenle', '', ''); } ?></div>
                                <div class="entry">
                                    <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array('class' => 'alignleft post_thumbnail')); } ?>
    								<?php the_content(''); ?>
                                    <div class="readmorecontent">
    									<a class="readmore" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Tamamını Oku &raquo;</a>
    								</div>
    							</div>
    						</div><!--/post-<?php the_ID(); ?>-->
    				
    				<?php endwhile; ?>
    				<div class="navigation">
    					<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
    					<div class="alignleft"><?php next_posts_link('&laquo; Önceki Yazılar') ?></div>
    					<div class="alignright"><?php previous_posts_link('Sonraki Yazılar &raquo;') ?></div>
    					<?php } ?>
    				</div>
    				<?php else : ?>
    					<h2 class="center">Bulunamadı</h2>
    					<p class="center">Üzgünüz, fakat aradığınız bulunamamıştır.</p>
    					<?php get_search_form(); ?>
    			
    				<?php endif; ?>
    				</div>
    			</div>
    		
    		<?php get_sidebars(); ?>
    	</div>
    <?php get_footer(); ?>
  • 10-06-2010, 15:08:15
    #11
    Üyeliği durduruldu
    Yahu yazdığımız mesajı okumuyormusun arkadaş?

    Alıntı
    Yazıların içerisinde <!--more--> tagı kullanıyorsan onları kaldır yazının tamamı anasayfada görünür zaten. İstediğin bu değilse tam olarak ne yapmak istediğini detaylıca örnek vererek bi yaz. Bide index.php içerisindeki kodlarının tümünü buraya güzelce koy ki yol gösteren olsun.