テーマを開発する
### テーマ開発に関するドキュメントは以下のリンクより参照してください。
https://developer.wordpress.org/themes/
index.php、home.php、front-page.phpの作成
single.phpの作成
404ページの作成
ファイル名は404.phpで作成する
<?php
/**
* The template for displaying 404 pages (Not Found)
*/
get_header();
?>
<?php
//本文を追加
get_sidebar();
get_footer();