Sakin sakin
("Nav" html5 de dolaşım, menü etiketidir.)
Title codex kodunu h tagı içerisine alırsan önem listesine göre hangisi sana uygunsa daha iyi olur google açısından.
<?php the_excerpt(); ?> Yazının bir kısmını <?php the_content(); ?> ise tamamını gösterir ana sayfada excerpt kullanmalısın.
Mesajlara geç cevap veriyorum çünkü sürekli sitede durmuyorum aynısı skype içinde geçerli kolay gelsin.
<?php get_header(); ?>
<section class="icerik">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="box">
<div class="title">
<h2><?php the_title(); ?></h2>
</div>
<div class="pcontent">
<?php the_excerpt(); ?>
</div>
<div class="devam">
<ul>
<li>Okunma</li>
<li>Kategori</li>
<li>Yorum Sayisi</li>
</ul>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</section>
<?php get_footer(); ?>