LoginSignup
0
1

More than 5 years have passed since last update.

コーディングでよしなに作成する404ページ(NotFound)ページ

Posted at

概要

404ページのデザインが無い場合があります、
そんなときコーディングでよしなに404ページ(NotFound)を作成できるテンプレートです。

コード


<article class="p-error">
<h1 class="p-error__title">Page Not Found</h1>
<p class="p-error__sub">お探しのページは見つかりませんでした。</p>
<div class="p-error__entry">
<p>ご指定のページは削除されたか、移動した可能性がございます。</p>
<div class="p-error__back"><a href="<?php echo home_url( '/' ); ?>">トップページへ</a><a a="" href="#" onclick="history.back(); return false;">前のページへ戻る</a></div>
</div>
</article>

参考サイト

404 - Calltoidea
https://calltoidea.com/404/

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1