-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsection-slider.php
70 lines (69 loc) · 2.31 KB
/
section-slider.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php query_posts(array(
'post_type' => 'any',
'meta_query' => array(
array(
'key' => '_jeo_featured',
'value' => 1
)
),
'posts_per_page' => -1
));
if(have_posts()) :
?>
<div class="container">
<div class="twelve columns">
<div id="lq-slider">
<div class="row">
<h3 class="slider-title"><?php _e('Investigations', 'landquest'); ?>:</h3>
<ul class="slider-navigation">
<?php while(have_posts()) : the_post(); ?>
<li>
<p><?php the_title(); ?></p>
</li>
<?php endwhile; ?>
</ul>
</div>
<div class="slider-content">
<ul>
<?php while(have_posts()) : the_post(); ?>
<li data-postid="<?php the_ID(); ?>">
<article>
<header>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="post-meta">
<p class="post-date">
<span><?php echo get_the_date(); ?></span>
</p>
</div>
</header>
<section>
<?php the_excerpt(); ?>
</section>
<footer>
<div class="row">
<div class="share-container">
<h4><?php _e('Share', 'landquest'); ?></h4>
<ul class="share">
<li class="facebook"><a href="http://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>" rel="external" target="_blank"><?php _e('Share on Facebook', 'landquest'); ?></a></li>
<li class="twitter"><a href="https://www.twitter.com/intent/tweet?text=<?php the_title(); ?>&url=<?php the_permalink(); ?>" rel="external" target="_blank"><?php _e('Tweet about it', 'landquest'); ?></a></li>
<li class="gplus"><a href="https://plus.google.com/share?url=<?php the_permalink(); ?>" rel="external" target="_blank"><?php _e('Share on Google Plus', 'landquest'); ?></a></li>
</ul>
</div>
</div>
</footer>
</article>
</li>
<?php endwhile; ?>
</ul>
</div>
<p class="slider-arrows">
<a class="previous" href="#" title="<?php _e('Previous', 'landquest'); ?>"><?php _e('Previous', 'landquest'); ?></a>
<a class="next" href="#" title="<?php _e('Next', 'landquest'); ?>"><?php _e('Next', 'landquest'); ?></a>
</p>
</div>
</div>
</div>
<?php
endif;
wp_reset_query();
?>