Untitled
By: a guest | Feb 6th, 2010 | Syntax:
HTML | Size: 1.03 KB | Hits: 132 | Expires: Never
<?php
/*
Template Name: New Builds with no Slideshow
*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $picture = get_post_meta($post->ID, 'picture', true); ?>
<!--be sure to change cat=4 to whatever category Refits become-->
<?php $recent = new WP_Query("cat=3&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" title="
<?php the_title(); ?>">
<?php the_title(); ?></a></li>
<?php endwhile; ?>
<img src="<?php echo $picture; ?>" align="left" alt="
<?php the_title(); ?>" width="440" height="280" />
<br class="clear" />
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>