Created
March 2, 2015 07:56
-
-
Save Clorith/9e9f8b773e5c8d8213db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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