Skip to content

Instantly share code, notes, and snippets.

@spigotdesign
Created May 3, 2017 21:58
Show Gist options
  • Save spigotdesign/d27bee2e27adb7ce4b26530ba8979ba6 to your computer and use it in GitHub Desktop.
Save spigotdesign/d27bee2e27adb7ce4b26530ba8979ba6 to your computer and use it in GitHub Desktop.
<?php @header( 'HTTP/1.1 404 Not found', true, 404 );
get_header(); // Loads the header.php template. ?>
<main class="content" itemprop="mainContentOfPage">
<header class="page-header">
<h1 <?php hybrid_attr( 'entry-title' ); ?>><?php _e( '404 Error: Page Not Found', 'windsorone' ); ?></h1>
<?php if (get_field('page_subhead')) { ?>
<span class="page-subhead"><?php echo get_field('page_subhead'); ?></span>
<?php } ?>
</header>
<div class="page-content">
Hello world
<?php do_shortcode('[fl_builder_insert_layout slug="404-error"]'); ?>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment