Making WordPress.org


Ignore:
Timestamp:
07/30/2016 08:30:37 PM (8 years ago)
Author:
ocean90
Message:

Forums Theme: Use get_header() in the 404 template.

Ensures that the correct navigation is loaded.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/404.php

    r1757 r3756  
    1 <?php wporg_get_global_header(); ?>
    2 
    3 <div id="headline">
    4     <div class="wrapper">
    5         <h2><?php _e( 'Page Not Found', 'wporg-forums' ); ?></h2>
    6     </div>
    7 </div>
     1<?php get_header(); ?>
    82
    93<div id="pagebody">
    104    <div class="wrapper">
    115        <div class="col-12">
     6            <h3><?php _e( 'Page Not Found', 'wporg-forums' ); ?></h3>
    127            <p class="intro"><?php _e( 'The page you were looking for could not be found. I&#8217;m sorry, it&#8217;s not your fault&hellip; probably.', 'wporg-forums' ); ?></p>
    138        </div>
     
    1510</div>
    1611
    17 <?php wporg_get_global_footer(); ?>
     12<?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.