groups

name language licence
Custom Fonts using @font-face HTML BSD
The Homepage Template Code PHP BSD
The Portfolio Template Code PHP BSD
ALTERNATING ROWS (WORDPRESS VERSION) PHP BSD
WORDPRESS (WP) CUSTOM FIELDS PHP BSD
WORDPRESS STATIC HTML TEMPLATE PHP BSD
gallery PHP GPL 2
Display In 2-Column Table PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



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...)