-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·31 lines (30 loc) · 1.14 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
<footer class="footer" role="contentinfo">
<div class="container">
<div class="row">
<div class="col text-center">
<h2>About Rethink Iowa</h2>
<?php $page = get_page_by_path('general-info');?>
<?php $footer_query = new WP_Query(array(
'page_id' => $page->ID,
));?>
<?php if($footer_query -> have_posts()){ ?>
<?php while ($footer_query -> have_posts()){ ?>
<?php $footer_query -> the_post();?>
<p>
<?php the_field('boilerplate');?>
</p>
<p>
Copyright © <script>document.write(new Date().getFullYear())</script> <a href="<?php the_field('link');?>">Rethink Iowa</a>
</p>
<?php } ?>
<?php } ?>
<?php wp_reset_postdata();?>
</div>
</div>
</div>
</footer>
</div>
<!-- /wrapper -->
<?php wp_footer(); ?>
</body>
</html>