Peki buyrun aşağıdaki index.php dosyası home.php dosyası yok içerisinde.
<?php get_header(); ?>
<div id="gallery">
<?php include (TEMPLATEPATH . '/sidebar_left.php'); ?>
<div class="mainarea">
<?php include (TEMPLATEPATH . '/ads/ad728-15.php'); ?>
<div class="latestphotos">
<h2>Latest Photos</h2>
<ul>
<?php $recent = new WP_Query("showposts=6"); while($recent->have_posts()) : $recent->the_post();?>
<li>
<div class="thumb">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php $values = get_post_custom_values("_image_url"); echo $values[0]; ?>&h=114&w=114&zc=1&q=114" alt="<?php the_title(); ?>" /></a>
</div>
<div class="thumbtitle">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</div>
</li>
<?php endwhile; ?>
</ul>
</div>
<div class="galleryhome">
<h2>Categories</h2>
<div class="homecategories">
<ul>
<?php $categories = get_categories('number=100');
foreach ($categories as $cat) {
echo "<li><a href=\"" . get_category_link( $cat->term_id ) . "\">" . $cat->cat_name . "</a><div class=\"description\">". $cat->description ."</div></li>"; } ?>
</ul>
</div>
</div>
<?php include (TEMPLATEPATH . '/ads/ad728-90.php'); ?>
<div class="populartags">
<h2>Popular Tags</h2>
<?php wp_tag_cloud('smallest=10&largest=13&number=50&orderby=count'); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>