Issues (631)

footer-lite.php (8 issues)

Labels
Severity
1
<?php
2
/**
3
 * The template for displaying the single comics simplified footer
4
 *
5
 * Contains the closing of the #content div and all content after.
6
 *
7
 * @package WordPress
8
 * @subpackage Strip
9
 */
10
11
?>
12
	</div><!-- #content -->
13
	<footer id="colophon" class="site-footer" role="contentinfo">
14
15
	  <div class="site-info">
16
				&copy; <span class="site-name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php
0 ignored issues
show
The function bloginfo was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

16
				&copy; <span class="site-name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php /** @scrutinizer ignore-call */ bloginfo( 'name' ); ?></a></span> <?php
Loading history...
The function esc_url was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

16
				&copy; <span class="site-name"><a href="<?php echo /** @scrutinizer ignore-call */ esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php
Loading history...
The function home_url was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

16
				&copy; <span class="site-name"><a href="<?php echo esc_url( /** @scrutinizer ignore-call */ home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php
Loading history...
17
				$from_year = 2016;
18
				$this_year = (int) date( 'Y' );
19
				echo esc_html( $from_year . (($from_year !== $this_year) ? '-' . $this_year : '') );?>
0 ignored issues
show
The function esc_html was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

19
				echo /** @scrutinizer ignore-call */ esc_html( $from_year . (($from_year !== $this_year) ? '-' . $this_year : '') );?>
Loading history...
20
				<span class="sep"> | </span>
21
		<?php do_action( 'strip_credits' );
0 ignored issues
show
The function do_action was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

21
		<?php /** @scrutinizer ignore-call */ do_action( 'strip_credits' );
Loading history...
22
					?>
23
					<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip', 'strip' ) ); ?>"><?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'strip' ), 'strip', 'SILENT COMICS' ); ?></a>
0 ignored issues
show
The function esc_html__ was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

23
					<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip', 'strip' ) ); ?>"><?php printf( /** @scrutinizer ignore-call */ esc_html__( 'Theme: %1$s by %2$s.', 'strip' ), 'strip', 'SILENT COMICS' ); ?></a>
Loading history...
The function __ was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

23
					<a href="<?php echo esc_url( /** @scrutinizer ignore-call */ __( 'https://github.com/SilentComics/Strip', 'strip' ) ); ?>"><?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'strip' ), 'strip', 'SILENT COMICS' ); ?></a>
Loading history...
24
			</div><!-- .site-info -->
25
		</footer><!-- #colophon -->
26
	</div><!-- #page -->
27
28
	<?php wp_footer(); ?>
0 ignored issues
show
The function wp_footer was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

28
	<?php /** @scrutinizer ignore-call */ wp_footer(); ?>
Loading history...
29
30
	</body>
31
	</html>
32