I tried to create a phps file without success – I thought it was a case of just sticking an s at the end of it, but even a google found nothing for me. So here’s the index.php/home.php in full. Hope osmeone can tell me where to place The Loop:
<?php get_header(); ?>
<div id="lmain">
<div class ="lexcerpt medium box">
<div class="excerptimage1"></div><div class="excerpttitle">Film</div>
<?php $my_query = new WP_Query('category_name=film&showposts=2'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
// Do stuff.
<?php endwhile; ?>
</div><!-- Close box2-->
<div class="rexcerpt medium box">
<div class="excerptimage2"></div><div class="excerpttitle">Music</div>
<?php c2c_get_recent_posts(1, "%post_excerpt%", "3"); ?>
</div><!-- Close box3-->
<div class="clearer">
</div>
<div class ="lexcerpt medium box">
<div class="excerptimage3"></div><div class="excerpttitle">Book</div>
<?php c2c_get_recent_posts(1, "%post_excerpt%", "5"); ?>
</div><!-- Close box2-->
<div class="rexcerpt medium box">
<div class="excerptimage4"></div><div class="excerpttitle">Game</div>
<?php c2c_get_recent_posts(1, "%post_excerpt%", "4"); ?>
</div><!-- Close box3-->
<div class="clearer">
</div>
<div id="posts">
<div class="latestimage"></div><div class="latesttext">The Latest Reviews</div><br />
This is where the links for the latest posts would go. A mixed group of links with the title latest entries. Or something like that. This is where the links for the latest posts would go. A mixed group of links with the title latest entries. Or something like that. This is where the links for the latest posts would go. A mixed group of links with the title latest entries.
</div>
<div class="clearer">
</div>
</div>
<div class="clearer">
</div>
<div id="rcomment" class="box">
<div class="speechimage"></div><div class="speechtext">Latest Comment</div><br />
</div>
<div id="kmain">
<div id ="lcomment" class ="short box">
<div class="speechimage"></div><div class="speechtext">Latest Comment</div><br />
</div>
<div id="rrcomment" class="box">
<div class="speechimage"></div><div class="speechtext">Latest Comment</div><br />
</div>
<?php
get_footer();
?>