این ارور ها می دونم برای چیه
چون که من برخی فایل های رو شدیدا محدود کرده بودم مثل : ادمین و اینکلودس که ۰۰۰ بودند حالا هم ۴۰۰ هستشن ! :D تا سایت سی \ی یو نگیره
backticks
<?php get_header(); ?>
<div class="left">
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_search()) : ?>
<h2 class="mainpagetitle"><?php _e('Search results', 'dsanctuary'); ?></h2>
<?php /* If this is a category archive */ elseif (is_category()) : ?>
<h2 class="mainpagetitle"><?php _e('Archive for the ‘', 'dsanctuary'); single_cat_title(); _e('’ Category', 'dsanctuary'); ?></h2>
<?php /* If this is a tag archive */ elseif (is_tag()) : ?>
<h2 class="mainpagetitle"><?php _e('Posts Tagged ‘', 'dsanctuary'); single_tag_title(); _e('’', 'dsanctuary'); ?></h2>
<?php /* If this is a daily archive */ elseif (is_day()) : ?>
<h2 class="mainpagetitle"><?php _e('Archive for', 'dsanctuary'); ?> <?php the_time(__('F jS, Y', 'dsanctuary')); ?></h2>
<?php /* If this is a monthly archive */ elseif (is_month()) : ?>
<h2 class="mainpagetitle"><?php _e('Archive for', 'dsanctuary'); ?> <?php the_time(__('F, Y', 'dsanctuary')); ?></h2>
<?php /* If this is a yearly archive */ elseif (is_year()) : ?>
<h2 class="mainpagetitle"><?php _e('Archive for', 'dsanctuary'); ?> <?php the_time(__('Y', 'dsanctuary')); ?></h2>
<?php /* If this is an author archive */ elseif (is_author()) : ?>
<h2 class="mainpagetitle"><?php _e('Author Archive', 'dsanctuary'); ?></h2>
<?php /* If this is a paged archive */ elseif (isset($_GET['paged']) && !empty($_GET['paged'])) : ?>
<h2 class="mainpagetitle"><?php _e('Blog Archives', 'dsanctuary'); ?></h2>
<?php endif; ?>
<?php while (have_posts()) : the_post(); ?>
<div class="left_articles">
<?php if ($post->post_type != 'page') : ?>
<div class="buttons">" class="redbtn" title="<?php comments_number(__('0 comments', 'dsanctuary'),__('1 comment', 'dsanctuary'),__('% comments', 'dsanctuary')); ?>"><?php comments_number(__('0 comments', 'dsanctuary'),__('1 comment', 'dsanctuary'),__('% comments', 'dsanctuary')); ?> </div>
<div class="calendar"><p><span class="day"><?php the_time(__('jS', 'dsanctuary')); ?></span><span class="month"><?php echo strtoupper(the_date(__('M', 'dsanctuary'),'','',FALSE)) ?></span></p></div>
<h2 class="title posttitle">" rel="bookmark" title="<?php _e('Permanent Link to', 'dsanctuary'); ?> <?php the_title(); ?>"><?php the_title(); ?></h2>
<p class="description"><?php _e('Posted by', 'dsanctuary'); ?> <?php the_author_posts_link() ?> <?php _e('under', 'dsanctuary'); ?> <?php the_category(__(',', 'dsanctuary'). ' ') ?><?php edit_post_link(__('Edit', 'dsanctuary'),' | ',''); ?></p>
<?php else : ?>
<h2 class="title pagetitle">" rel="bookmark" title="<?php _e('Permanent Link to', 'dsanctuary'); ?> <?php the_title(); ?>"><?php the_title(); ?></h2>
<?php endif; ?>
<div class="post">
<?php the_content(__('(more...)', 'dsanctuary')); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2><?php _e('Not Found', 'dsanctuary'); ?></h2>
<p><?php _e('Sorry, but you are looking for something that isn\'t here.', 'dsanctuary'); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<div>
<div class="alignleft"><?php next_posts_link(__('« Previous Posts', 'dsanctuary')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Next Posts »', 'dsanctuary')) ?></div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
backticks