-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
67 lines (56 loc) · 1.13 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Elementify
*/
namespace Elementify;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<?php
/**
* Functions hooked into elementify/before_content action
*
*/
do_action( 'elementify/before_content' );
?>
<main id="main" class="site-main">
<section class="error-404 not-found">
<?php
/**
* Functions hooked into elementify_404_content_top action
*
*/
do_action( 'elementify/404/entry_header' );
?>
<?php
/**
* Functions hooked into elementify/404/entry_content action
*
* @hooked elementify_404_conent - 10
*/
do_action( 'elementify/404/entry_content' );
?>
<?php
/**
* Functions hooked into elementify_404_content_bottom action
*
*/
do_action( 'elementify/404/entry_footer' );
?>
</section><!-- .error-404 -->
</main><!-- #main -->
<?php
/**
* Functions hooked into elementify/after_content action
*
* @hooked elementify_sidebar - 10
*/
do_action( 'elementify/after_content' );
?>
<?php get_footer(); ?>