Passed
Push — dev ( 3be0f0...ce7a97 )
by Eric
02:17
created

footer.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * The template for displaying the footer.
4
 *
5
 * Contains the closing of the #content div and all content after.
6
 *
7
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
8
 *
9
 * @package bitsy
10
 */
11
12
?>
13
14
	</div><!-- #main -->
15
16
	<footer id="footer" class="site-footer <?php bitsy_footer_class ?>" role="contentinfo">
1 ignored issue
show
The constant bitsy_footer_class was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
17
		<div class="container">
18
19
			<?php get_template_part( 'components/footer/footer', 'widgets' ); ?>
20
	
21
			<?php get_template_part( 'components/footer/site', 'info' ); ?>
22
23
		</div>
24
	</footer><!-- #footer -->
25
26
<?php wp_footer(); ?>
27
28
</body>
29
</html>
30