groups

name language licence
Excluding the Category PHP BSD
The Homepage Template Code PHP BSD
The Portfolio Template Code PHP BSD



language: PHP
licence: BSD

The Homepage Template Code

options: view full snippetsend to code collector
<?php query_posts('showposts=4&cat=46'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="sample">
<a href="/portfolio#<?php the_title(); ?>" title="Read more about <?php the_title(); ?>">
<img src="/images/<?php $values = get_post_custom_values("Thumbnail"); echo $values[0]; ?>" />
<span><?php the_title(); ?></span><?php the_excerpt(); ?>
</a>
</div>
<?php endwhile; ?>

	
(Continues...)