Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created March 2, 2015 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Clorith/9e9f8b773e5c8d8213db to your computer and use it in GitHub Desktop.
Save Clorith/9e9f8b773e5c8d8213db to your computer and use it in GitHub Desktop.
<div class="carousel-inner">
<?php
$first = true;
while ( have_posts() ) : the_post();
$content = get_the_content();
?>
<div class="item <?php echo ( $first ? 'active' : 'inactive' ); ?>">
<div class="container slide-element">
<?php the_post_thumbnail(); ?>
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
</div> <!-- /.slide-element -->
</div> <!-- /.item -->
<?php
if ( $first ) {
$first = false;
}
}
endwhile;
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment