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 | © <span class="site-name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php |
||||||
0 ignored issues
–
show
Bug
introduced
by
![]() 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
![]() 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
![]() |
|||||||
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
![]() |
|||||||
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
![]() |
|||||||
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
![]() 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
![]() |
|||||||
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
![]() |
|||||||
29 | |||||||
30 | </body> |
||||||
31 | </html> |
||||||
32 |