-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
38 lines (37 loc) · 1.4 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
<?php
/**
* The template for displaying 404 pages
*
* @package Theme Freesia
* @subpackage Pixgraphy
* @since Pixgraphy 1.0
*/
get_header();
$pixgraphy_settings = pixgraphy_get_theme_options();
global $pixgraphy_content_layout;
if(($pixgraphy_settings['pixgraphy_sidebar_layout_options'] != 'nosidebar') && ($pixgraphy_settings['pixgraphy_sidebar_layout_options'] != 'fullwidth')){ ?>
<div id="primary">
<?php } ?>
<main id="main" class="site-main clearfix">
<article id="post-0" class="post error404 not-found">
<?php if ( is_active_sidebar( 'pixgraphy_404_page' ) ) :
dynamic_sidebar( 'pixgraphy_404_page' );
else:?>
<section class="error-404 not-found">
<header class="page-header">
<h2 class="page-title"> <?php esc_html_e( 'Oops! That page can’t be found.', 'pixgraphy' ); ?> </h2>
</header> <!-- .page-header -->
<div class="page-content">
<p> <?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'pixgraphy' ); ?> </p>
<?php get_search_form(); ?>
</div> <!-- .page-content -->
</section> <!-- .error-404 -->
<?php endif; ?>
</article> <!-- #post-0 .post .error404 .not-found -->
</main> <!-- #main -->
<?php
if(($pixgraphy_settings['pixgraphy_sidebar_layout_options'] != 'nosidebar') && ($pixgraphy_settings['pixgraphy_sidebar_layout_options'] != 'fullwidth')): ?>
</div> <!-- #primary -->
<?php endif;
get_sidebar();
get_footer();