Issues (311)

Labels
Severity
1
<?php
2
/**
3
 * The template for displaying 404 pages (not found)
4
 *
5
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
6
 *
7
 * @package DesignFly
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
13
	<div id="not-found-wrapper" class="content-area container">
14
		<main id="main" class="site-main row">
15
			<div class="col-md-8">
16
17
				<section class="error-404 not-found">
18
					<header class="page-header">
19
						<h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'designfly' ); ?></h1>
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

19
						<h1 class="page-title"><?php /** @scrutinizer ignore-call */ esc_html_e( 'Oops! That page can&rsquo;t be found.', 'designfly' ); ?></h1>
Loading history...
20
					</header><!-- .page-header -->
21
22
					<div class="page-content">
23
						<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try searching something else?', 'designfly' ); ?></p>
24
25
						<?php get_search_form(); ?>
0 ignored issues
show
The function get_search_form 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

25
						<?php /** @scrutinizer ignore-call */ get_search_form(); ?>
Loading history...
26
27
					</div><!-- .page-content -->
28
				</section><!-- .error-404 -->
29
			</div>
30
31
			<div class="col-md-4">
32
				<?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

32
				<?php /** @scrutinizer ignore-call */ get_sidebar(); ?>
Loading history...
33
			</div>
34
35
		</main><!-- #main -->
36
	</div><!-- #primary -->
37
38
<?php
39
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

39
/** @scrutinizer ignore-call */ 
40
get_footer();
Loading history...