Issues (631)

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 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
	<div class="wrap">
13
		<section id="primary"
14
			<main id="content" role="main">
15
16
			<article id="post-0" class="post error404 not-found">
17
18
				<header class="entry-header">
19
					<h1 class="entry-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'strip' ); ?></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="entry-title"><?php /** @scrutinizer ignore-call */ esc_html_e( 'Oops! That page can&rsquo;t be found.', 'strip' ); ?></h1>
Loading history...
20
				</header><!-- .entry-header -->
21
22
					<div class="entry-content clear">
23
						<p><?php esc_html_e( 'Nothing was found here. Maybe try one of the links below or a search?', 'strip' ); ?></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
		<?php the_widget( 'WP_Widget_Recent_Posts', 6 ); ?>
0 ignored issues
show
The function the_widget 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
		<?php /** @scrutinizer ignore-call */ the_widget( 'WP_Widget_Recent_Posts', 6 ); ?>
Loading history...
28
29
						<div class="widget widget_most_used_categories">
30
							<h2 class="widgettitle"><?php esc_html_e( 'Most Used Categories', 'strip' ); ?></h2>
31
							<ul>
32
		<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 6 ) ); ?>
0 ignored issues
show
The function wp_list_categories 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 */ wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 6 ) ); ?>
Loading history...
33
							</ul>
34
						</div>
35
36
		<?php the_widget( 'WP_Widget_Calendar', array( 'title' => __( 'Calendar', 'strip' ) ) ); ?>
0 ignored issues
show
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

36
		<?php the_widget( 'WP_Widget_Calendar', array( 'title' => /** @scrutinizer ignore-call */ __( 'Calendar', 'strip' ) ) ); ?>
Loading history...
37
38
		<?php
39
		/* translators: %1$s: smiley */
40
		$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'strip' ), convert_smilies( ':)' ) ) . '</p>';
0 ignored issues
show
The function convert_smilies 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

40
		$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'strip' ), /** @scrutinizer ignore-call */ convert_smilies( ':)' ) ) . '</p>';
Loading history...
41
		the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
42
		?>
43
44
					</div><!-- entry-content clear -->
45
46
			</main><!-- #content -->
47
		</section><!-- #primary -->
48
	</div><!-- .wrap -->
49
50
<?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

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

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