Benim demek istediğim şu. Yani sadece anasayfa titlesi, meta vs.
Örneğin bir wp sitemin index.php dosyası
Ne bir title ne bit meta.
<?php get_header(); ?>
<div class="main">
<?php get_sidebar(); ?>
<div class="listele">
<div class="aciklama">
<h2>***** Sitesi</h2>
Burada bir site açıklaması yazıyor.
</div>
<?php
global $post;
$myposts = get_posts('numberposts=88&offset=0');
foreach($myposts as $post) :
setup_postdata($post);
?>
<?php
$resim = get_post_meta($post->ID,'resim', true);
if($resim != "") { ?>
<div class="yeni">
<a class="yenilink" href="<?php the_permalink() ?>"><img class="yeniresim" border="0" src="<?php bloginfo('template_url'); ?>/js/timthumb.php?src=<?php echo $resim; ?>&w=85&h=55&zc=1" width="85" height="55" alt="<?php the_title(); ?>" /><br /><?php echo (get_the_title());?></a>
</div>
<?php } ?>
<?php endforeach; ?>
<div class="temizle"></div>
<div style="padding-left:8px;padding-top:2px;padding-bottom:10px;"><?php pagenavi(); ?>
</div>
</div>
<?php include ("js/right-sidebar.php");?>
<div class="temizle"></div>
<?php get_footer(); ?>