-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
73 lines (59 loc) · 1.86 KB
/
Copy path404.php
File metadata and controls
73 lines (59 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Genesis Framework.
*
*
*
* @package
* @author
* @license
* @link
*/
// Remove default loop.
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'genesis_404' );
/**
* This function outputs a 404 "Not Found" error message.
*
* @since 1.6
*/
function genesis_404() {
genesis_markup(
array(
'open' => '<article class="entry">',
'context' => 'entry-404',
)
);
genesis_markup(
array(
'open' => '<h1 %s>',
'close' => '</h1>',
'content' => apply_filters( 'genesis_404_entry_title', __( 'Not found, error 404', 'genesis' ) ),
'context' => 'entry-title',
)
);
echo '<div class="entry-content">';
if ( genesis_html5() ) :
/* translators: %s: URL for current website. */
echo apply_filters( 'genesis_404_entry_content', '<p>' . sprintf( __( 'The page you are looking for no longer exists. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for. Or, you can try finding it by using the search form below.', 'genesis' ), trailingslashit( home_url() ) ) . '</p>' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
get_search_form();
else :
?>
<p><?php /* translators: %s: URL for current website. */ printf( wp_kses_post( __( 'The page you are looking for no longer exists. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below.', 'genesis' ) ), esc_url( trailingslashit( home_url() ) ) ); ?></p>
<?php
endif;
if ( genesis_a11y( '404-page' ) ) {
echo '<h2>' . esc_html__( 'Sitemap', 'genesis' ) . '</h2>';
genesis_sitemap( 'h3' );
} else {
genesis_sitemap( 'h4' );
}
echo '</div>';
genesis_markup(
array(
'close' => '</article>',
'context' => 'entry-404',
)
);
}
genesis();