-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
53 lines (53 loc) · 2.03 KB
/
footer.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
<footer id="colophon">
<div class="container">
<div class="row">
<?php /*
<div class="six columns">
<h3><?php _e('Contact us', 'landquest'); ?></h3>
<?php echo do_shortcode('[landquest-contact]'); ?>
</div>
*/ ?>
<div class="six columns">
<?php
$creators = array();
$partners = get_posts(array('post_type' => 'partner', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'menu_order'));
if($partners) :
?>
<h3><?php _e('A collaboration between', 'landquest'); ?></h3>
<ul class="partner-list row">
<?php foreach($partners as $partner) :
if(get_field('partner_is_creator', $partner->ID)) {
$creators[] = $partner;
continue;
}
?>
<li>
<a href="<?php echo get_permalink($partner->ID); ?>" title="<?php echo get_the_title($partner->ID); ?>"><?php echo get_the_post_thumbnail($partner->ID, 'footer-thumbnail', array('alt' => get_the_title($partner->ID))); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
<div class="six columns">
<?php if(!empty($creators)) : ?>
<h3><?php _e('Built with support from', 'landquest'); ?></h3>
<ul class="partner-list row">
<?php foreach($creators as $creator) : ?>
<li>
<a href="<?php echo get_permalink($creator->ID); ?>" title="<?php echo get_the_title($creator->ID); ?>"><?php echo get_the_post_thumbnail($creator->ID, 'footer-thumbnail', array('alt' => get_the_title($creator->ID))); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
</div>
<div class="twelve columns row">
<p class="credits">
<?php _e('developed using', 'landquest'); ?> <a href="http://lab.oeco.org.br/projects/jeo/" target="_blank">JEO</a>, <?php _e('design by', 'landquest'); ?> <a href="http://cardume.art.br/" title="Cardume" class="cardume">Cardume</a> <?php _e('and some icons by', 'landquest'); ?> <a href="http://entypo.com/" title="Entypo">Entypo</a>
</p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>