-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
404.php
69 lines (58 loc) · 2.63 KB
/
404.php
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
<?php
/**
* The template for displaying 404 pages (Not Found).
*/
if ( !defined('ABSPATH') ){ //Redirect (for logging) if accessed directly
header('Location: http://' . $_SERVER['HTTP_HOST'] . substr($_SERVER['PHP_SELF'], 0, strpos($_SERVER['PHP_SELF'], "wp-content/")) . '?ndaat=' . basename($_SERVER['PHP_SELF'])); //@todo "Nebula" 0: Update strpos() to str_contains() in PHP8
exit;
}
do_action('nebula_preheaders');
get_header();
?>
<?php get_template_part('inc/headercontent'); ?>
<?php get_template_part('inc/nebula_drawer'); ?>
<?php nebula()->timer('404 Template'); ?>
<main id="content-section" role="main">
<div class="container">
<div class="row">
<div class="col">
<?php nebula()->breadcrumbs(); ?>
</div><!--/col-->
</div><!--/row-->
<div class="row">
<div id="top" class="col">
<article id="post-0" class="post error404 not-found">
<?php if ( get_theme_mod('title_location') === 'content' ): ?>
<h1 class="page-title"><?php _e('Not Found', 'nebula'); ?></h1>
<p><?php _e('The page you requested could not be found.', 'nebula'); ?></p>
<?php endif; ?>
<?php echo nebula()->search_form(); ?>
<?php if ( is_string(nebula()->slug_keywords) && !empty(nebula()->error_query) && nebula()->error_query->have_posts() ): //Check if the error query (from /libs/Functions.php) found any matches ?>
<div id="error-page-suggestions">
<h2><?php _e('Suggestions', 'nebula'); ?></h2>
<?php while ( nebula()->error_query->have_posts() ): ?>
<?php nebula()->error_query->the_post(); ?>
<h3 class="suggestion-title entry-title">
<i class="fa fa-fw fa-chevron-right"></i>
<?php if ( strpos(get_permalink(), nebula()->slug_keywords) ): //@todo "Nebula" 0: Update strpos() to str_contains() in PHP8 ?>
<strong>
<?php endif; ?>
<a class="internal-suggestion" href="<?php echo get_permalink(); ?>"><?php echo esc_html(get_the_title()); ?></a>
<?php if ( strpos(get_permalink(), nebula()->slug_keywords) ): //@todo "Nebula" 0: Update strpos() to str_contains() in PHP8 ?>
</strong>
<?php endif; ?>
</h3>
<?php endwhile; ?>
<p><a href="<?php echo home_url('/'); ?>?s=<?php echo str_replace('-', '+', nebula()->slug_keywords); ?>"><?php _e('View all results', 'nebula'); ?> »</a></p>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
<?php do_action('nebula_404_content'); ?>
</article>
</div><!--/col-->
<?php get_sidebar(); ?>
</div><!--/row-->
</div><!--/container-->
</main>
<?php nebula()->timer('404 Template', 'end'); ?>
<?php get_footer(); ?>