なんだかんだワードプレスを使用してサイト制作する機会が多いので、自分用にメモ。
index.phpとか
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="wrap">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
header.php
<!DOCTYPE html>
<html lang="ja">
<head>
<?php wp_head(); ?>
</head>
<body>
footer.php
<?php wp_footer(); ?>
</body>
</html>
style.css
@charset "UTF-8";
/*
Theme Name: テーマの名称
Theme URI: テーマのURL
Author: テーマの作者(組織名)
Author URI: 上記のURL
Description: テーマの説明文
Version: バージョン
License: ライセンス
License URL: 上記のURL
Tags: タグ,カンマ区切りで複数
Text Domain: テキストドメイン
*/