cl01/wp-content/themes/hester/404.php
2025-02-24 12:39:24 +08:00

36 lines
702 B
PHP
Executable File

<?php
/**
* The template for displaying 404 pages (not found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Hester
* @author Peregrine Themes
* @since 1.0.0
*/
?>
<?php get_header(); ?>
<div class="hester-container">
<div id="primary" class="content-area">
<?php do_action( 'hester_before_content' ); ?>
<main id="content" class="site-content" role="main"<?php hester_schema_markup( 'main' ); ?>>
<?php do_action( 'hester_content_404' ); ?>
</main><!-- #content .site-content -->
<?php do_action( 'hester_after_content' ); ?>
</div><!-- #primary .content-area -->
</div><!-- END .hester-container -->
<?php
get_footer();