| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/governmentgrants.us/wp-content/themes/governmentgrantsus/ |
Upload File : |
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
*/
?>
<!-- Footer common code start from here -->
<footer class="footerBg">
<div class="container">
<?php
wp_nav_menu(
array(
'menu'=> 'footer-menu',
'menu_class'=> '',
'container' => '',
'items_wrap' => '<ul class="footNav" id="%1$s">%3$s</ul>'
)
);
?>
<div class="note">
<?php
if ( is_active_sidebar( 'sidebar-5' ) ) :
dynamic_sidebar( 'sidebar-5' );
endif;
?>
<span>© USA Grant Applications copyright 2011-<?= date('Y');?></span>
</div>
</div>
</footer>
</div>
<script src="<?php echo get_template_directory_uri();?>/js/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
$(".mobIcon").click(function(){
$(".mobNav").toggleClass("open");
$(this).toggleClass("active");
})
})
</script>
<script>
jQuery(document).ready(function($) {
if ($(window).width() < 768) {
$('.menu-item-has-children > a').on('click', function(e) {
e.preventDefault();
$(this).toggleClass('active');
$(this).siblings('.sub-menu').slideToggle();
});
}
});
</script>
<?php
wp_footer();
?>
</body>
</html>