Issues (631)

archive-titles.php (8 issues)

Labels
Severity
1
<?php
2
/**
3
 * Comics Archive by titles
4
 *
5
 * Used to display comic Archives by titles only.
6
 *
7
 * @package WordPress
8
 * @subpackage Strip
9
 */
10
11
	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

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

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

18
			<?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

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

27
				'title_li'      => /** @scrutinizer ignore-call */ esc_html_e( '', 'strip' ),
Loading history...
28
				);
29
				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

29
				/** @scrutinizer ignore-call */ 
30
    wp_list_pages( $args );
Loading history...
30
			?>
31
			</h2>
32
			<br>
33
34
		</main><!-- #content -->
35
	</section><!-- #primary -->
36
37
<?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

37
<?php /** @scrutinizer ignore-call */ get_sidebar(); ?>
Loading history...
38
<?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

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