css
fonts
images
languages
plugins
404.php
archive.php
archives.php
attachment.php
author.php
category.php
comments.php
footer.php
functions.php
header.php
index.php
license.txt
loop.php
page.php
readme.md
readme.txt
screenshot.png
search.php
single.php
style.css
tag.php
19 lines
510 B
PHP
19 lines
510 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* The template for displaying 404 pages (Not Found).
|
||
|
*/
|
||
|
|
||
|
get_header(); ?>
|
||
|
|
||
|
|
||
|
|
||
|
<h1 class="page-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
|
||
|
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
|
||
|
<?php get_search_form(); ?>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
// focus on search field after it has loaded
|
||
|
document.getElementById('s') && document.getElementById('s').focus();
|
||
|
</script>
|
||
|
|
||
|
<?php get_footer(); ?>
|