-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
103 lines (81 loc) · 3.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<div id="footer" class="wrapper">
<div class="row three-column large-footer">
<div class="col-md-4 col">
<div class="content resources">
<h3>Resources:</h3>
<?php wp_nav_menu( array(
'menu' => 'resources',
// do not fall back to first non-empty menu
'theme_location' => '__no_such_location',
// do not fall back to wp_page_menu()
'fallback_cb' => false,
) ); ?>
</div>
</div>
<div class="col-md-4 col">
<div class="content newsletter">
<h3>Newsletter:</h3>
<?php //echo do_shortcode( '[constantcontactapi formid="1"]' ); ?>
<?php //gravity_form( 2, false, false, true, array(), true, 999, true ); ?>
<?php echo do_shortcode('[mc4wp_form id="5696"]'); ?>
<div class="clear"></div>
</div>
</div>
<div class="col-md-4 col">
<ul>
<?php dynamic_sidebar( 'footer-right-widget-area' ); ?>
</ul>
</div>
</div>
<div class="row three-column small-footer">
<div class="col-md-4 col">
<div class="content resources">
<h3>Resources:</h3>
<?php wp_nav_menu( array(
'menu' => 'resources',
// do not fall back to first non-empty menu
'theme_location' => '__no_such_location',
// do not fall back to wp_page_menu()
'fallback_cb' => false,
) ); ?>
</div>
</div>
<div class="col-md-4 col">
<ul>
<?php dynamic_sidebar( 'footer-right-widget-area' ); ?>
</ul>
</div>
<div class="col-md-4 col">
<div class="content newsletter">
<h3>Newsletter:</h3>
<?php //echo do_shortcode( '[constantcontactapi formid="1"]' ); ?>
<?php echo do_shortcode('[mc4wp_form id="5749"]'); ?>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<!--<a href="#top" class="go-top" style="display: inline;">Go to top of page</a>-->
</div>
<div class="symbol wrapper"></div>
<div class="copyright wrapper">Site created by Copyright © <?php echo date('Y'); ?> /
<a href="http://www.revolverstudios.com" target="_blank"> <span style="font-family: 'proxima_nova_ltsemibold',Arial,Helvetica,sans-serif;" > REVOLVER STUDIOS </span> </a>
</div>
<!--<footer>
<div class="wrapper">
<div class="logo"></div>
<?php wp_nav_menu( array( 'container' => false, 'theme_location' => 'footer', 'menu_class' => 'menu' ) ); ?>
<div class="clear"></div>
</div>
</footer>-->
<div id="nygov-universal-footer" class="nygov-universal-container">
<noscript>
<iframe id="nygov-universal-footer-frame" class="nygov-universal-container" width="100%" height="200px" src="//static-assets.ny.gov/load_global_footer/ajax?iframe=true" data-updated="2014-11-07 08:30" frameborder="0" style="border:none; overflow:hidden; width:100%; height:200px;" scrolling="no">
Your browser does not support iFrames
</iframe>
</noscript>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>