-
Notifications
You must be signed in to change notification settings - Fork 5
/
loop-carousel.php
31 lines (31 loc) · 1.39 KB
/
loop-carousel.php
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
<?php if(have_posts()) : ?>
<section class="posts-section carousel">
<ul class="posts-list popular">
<?php while(have_posts()) : the_post(); ?>
<?php if(!has_post_thumbnail()) continue; ?>
<li id="post-<?php the_ID(); ?>" class="clearfix">
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<div class="thumbnail-container">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('featured-squared'); ?></a>
</div>
<header class="post-header">
<?php do_action('afdm_loop_before_artwork_header'); ?>
<p class="category"><?php echo get_the_category_list(', '); ?></p>
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php /*
<p class="meta">
<span class="date"><span class="lsf">time</span> <?php echo get_the_date(); ?></span>
<span class="views"><span class="lsf">view</span> <?php echo afdm_get_views(); ?></span>
</p>
*/ ?>
</header>
</article>
</li>
<?php endwhile; ?>
</ul>
<div class="carousel-controllers">
<a class="next" href="#" title="<?php _e('Next', 'arteforadomuseu'); ?>"><span class="lsf"></span></a>
<a class="prev" href="#" title="<?php _e('Previous', 'arteforadomuseu'); ?>"><span class="lsf"></span></a>
</div>
</section>
<?php endif; ?>