سلام دوستان
مثلا خیر سرم رفتم شروع کنم تا یک قالب بنویسم که نمی دوونم برای چیییی تگ head خالی میشه و همه به Body میره ؟؟؟؟
یعنی میشه
<html>
<head></head>
<body>
<title></title>
....
محتوای فایل index :
<?php get_header(); ?>
<div class="post">
<?PHP if(have_posts()): while(have_posts()):the_post();?>
<div class="post">
<div class="title"><h3><a href="<?PHP the_permalink() ?>" target="_blank"><?PHP the_title() ?> </a></h3></div>
<div class="des"><?PHP the_content('');?></div>
<div class="tag"><?php the_tags(' ',',',''); ?></a></div>
<hr>
</div>
<?PHP endwhile; ?>
<?php else: ?>
<p style="direction:rtl;">پست مورد نظر یافت نشد!! </p>
<?PHP endif ?>
</div>
<?php get_footer(); ?>
محتوای فایل header :
<html>
<head>
<title>a</title>
</head>
<body>
<div id="header">Header</div>
محتوای فایل footer :
<div id="footer">footer</div>
</body>
</html>