* http://www.example.com/category/cat1/のようなカテゴリ ページに移動すると、そのページはホームページに移動したときと同じであるということですか?
category.php
その場合、テーマにテンプレートがありません。
テンプレート階層に関するCodexの例:
あなたのブログがhttp://example.com/blog/にあり、訪問者がhttp://example.com/blog/category/your-cat/のようなカテゴリ ページへのリンクをクリックした
場合: WordPress はテンプレート階層を使用して、適切なファイルを見つけて生成します。
WordPress は、現在のテーマのディレクトリで、カテゴリの ID に一致するテンプレート ファイルを探します。
If the category's ID is 4, WordPress looks for a template file named category-4.php.
If it is missing, WordPress next looks for a generic category template file, category.php.
If this file does not exist either, WordPress looks for a generic archive template, archive.php.
If it is missing as well, WordPress falls back on the main Theme template file, index.php.
Wordpress のデフォルトの Twenty Twelwe テーマのコードを使用して、カテゴリ テンプレートを作成できます。Dashoard > Appearance > Editorに移動し、そのテーマを選択して、category.php からコードをコピーします。