Skip to content

Instantly share code, notes, and snippets.

@takafumir
Created February 25, 2015 03:27
Show Gist options
  • Save takafumir/2608ded502727235b7df to your computer and use it in GitHub Desktop.
Save takafumir/2608ded502727235b7df to your computer and use it in GitHub Desktop.
404 not found page template for wordpress. (MIT License)
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title>お探しのページが見つかりませんでした</title>
<?php get_template_part( 'analytics' ); // create analytics.php template file or delete this line. ?>
</head>
<body>
<div>
<p>お探しのページが見つかりませんでした (404 Not Found)</p>
<p>お探しのページは存在しません。もしくは一時的にアクセスできないか、移動または削除された可能性があります。URLに間違いがないかご確認をお願いいたします。</p>
<p><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?> のトップページに戻る</a></p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment