Created
February 25, 2015 03:27
-
-
Save takafumir/2608ded502727235b7df to your computer and use it in GitHub Desktop.
404 not found page template for wordpress. (MIT License)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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