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
Bug
introduced
by
![]() |
|||||
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’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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
52 |