groups

name language licence
Display Recent Comments PHP BSD
Template Name PHP BSD
Dynamic Title Tags PHP BSD
slideshow PHP GPL 2
timthumb PHP GPL 2
Display Top Comments PHP BSD
Display Archives PHP BSD
Display Recently Updated Posts/Pages PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: GPL 2

slideshow

options: view full snippetsend to code collector
<?php
/*
Template Name: slideshow
*/
?>

<?php get_header(); ?>
   <div class="container span-24 first last" id="main">
    <?php include (TEMPLATEPATH . '/apps/slideshow-static.php'); ?>
  <div class="span-15 colborder id="content">    
	<?php if (have_posts()) : ?>
	<?php $i == 0; ?>
		<?php while (have_posts()) : the_post(); $i++; ?>
			<div <?php if(function_exists('post_class')) : ?><?php post_class(); ?><?php else : ?>class="post post-<?php the_ID(); ?>"<?php endif; ?>>
				<h2 class="entry"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
	
(Continues...)