This repository was archived by the owner on Sep 30, 2021. It is now read-only.
forked from warofthesun/advicebrands-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·63 lines (62 loc) · 2.81 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
54
55
56
57
58
59
60
61
62
63
<?php if (is_product()) {}
else {
include 'partials/logo-bar.php';
} ?>
<footer class="footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter">
<?php the_post(); ?>
<div id="inner-footer" class="wrap row">
<?php if( get_field('secondary_logo', 'option')): ?>
<div class="col-xs-12 col-md-3 footer_logo">
<img src="<?php the_field('secondary_logo', 'option') ?>">
</div>
<?php elseif( get_field('primary_logo', 'option') ): ?>
<div class="col-xs-12 col-md-3 footer_logo">
<img src="<?php the_field('primary_logo', 'option') ?>">
</div>
<!--nothing-->
<?php endif; ?>
<div class="col-xs-12 col-md-9">
<nav role="navigation">
<?php wp_nav_menu(array(
'container' => 'div', // enter '' to remove nav container (just make sure .footer-links in _base.scss isn't wrapping)
'container_class' => 'footer-links', // class of container (should you choose to use it)
'menu' => __( 'Footer Links', 'startertheme' ), // nav name
'menu_class' => 'nav footer-nav', // adding custom nav class
'theme_location' => 'footer-links', // where it's located in the theme
'before' => '', // before the menu
'after' => '', // after the menu
'link_before' => '<h6>', // before each link
'link_after' => '</h6>', // after each link
'depth' => 0, // limit the depth of the nav
'fallback_cb' => 'starter_footer_links_fallback' // fallback function
)); ?>
</nav>
</div>
<div class="physical_address col-xs-12 col-md-6 first">
<p class="source-org copyright">© <?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?>.<br><?php the_field('physical_address', 'option'); ?></p>
</div>
<div class="social_platforms col-xs-12 col-md-6 last">
<?php
// check if the repeater field has rows of data
if (have_rows('social_platforms', 'option')) :
// loop through the rows of data
while (have_rows('social_platforms', 'option')) : the_row();
// display a sub field value
$social_name = get_sub_field('social_name');
?>
<a href="<?php the_sub_field('social_link') ?>" class="fab fa-<?php echo $social_name['value']; ?>" target="_blank" label="<?php echo $social_name['label']; ?>"></a>
<?php
endwhile;
else :
// no rows found
endif;
?>
</div>
</div>
</footer>
<?php // all js scripts are loaded in library/starter.php ?>
<?php wp_footer(); ?>
<!-- close container -->
</div>
</body>
</html> <!-- end of site. what a ride! -->