Passed
Push — master ( 1b85a4...393c08 )
by SILENT
01:25
created

archive-titles.php (8 issues)

Labels
Severity
1
<?php
2
/**
3
 * Template Name: Archive titles
4
 * The template for displaying comic Archives by titles only.
5
 *
6
 * @package WordPress
7
 * @subpackage Strip
8
 */
9
10
	get_header(); ?>
0 ignored issues
show
The function get_header 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

10
	/** @scrutinizer ignore-call */ 
11
 get_header(); ?>
Loading history...
11
12
	<section id="primary"
13
		<main id="content" role="main">
14
15
			<header class="entry-header">
16
17
			<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
0 ignored issues
show
The function get_permalink 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

17
			<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( /** @scrutinizer ignore-call */ get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
Loading history...
The function the_title 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

17
			<?php /** @scrutinizer ignore-call */ the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
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

17
			<?php the_title( '<h1 class="entry-title"><a href="' . /** @scrutinizer ignore-call */ esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
Loading history...
18
19
			<?php // call the series by title and list them. ?>
20
21
			<h2 class="series-title">
22
23
			<?php
24
				$args = array(
25
				'post_type'     => 'comic',
26
				'title_li'      => esc_html_e( 'All Episodes', 'strip' ),
0 ignored issues
show
The function esc_html_e 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

26
				'title_li'      => /** @scrutinizer ignore-call */ esc_html_e( 'All Episodes', 'strip' ),
Loading history...
27
				);
28
				wp_list_pages( $args );
0 ignored issues
show
The function wp_list_pages 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
				/** @scrutinizer ignore-call */ 
29
    wp_list_pages( $args );
Loading history...
29
			?>
30
			</h2>
31
			<br>
32
33
		</main><!-- #content -->
34
	</section><!-- #primary -->
35
36
<?php get_sidebar(); ?>
0 ignored issues
show
The function get_sidebar 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

36
<?php /** @scrutinizer ignore-call */ get_sidebar(); ?>
Loading history...
37
<?php get_footer(); ?>
0 ignored issues
show
The function get_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

37
<?php /** @scrutinizer ignore-call */ get_footer(); ?>
Loading history...
38