index.php
wp-content/theme の下にあるand CSS
(style.css)を使用してテンプレートを作成し、バックエンドからアクティブ化する必要があります。ワードプレスの機能が必要なく、基本的なレイアウトが必要な場合でも作成できます。
例えば -
\htdocs\wordpress\wp-content\themes\yourthemename
index.phpを作成し、次のようなコードを投稿します-
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage yourthemename
*/
そしてstyle.cssでこのCSSを使用します
/*
Theme Name: yourthemename
Theme URI: http://wordpress.org/extend/themes/troop
Author: Swapnesh Sinha
Author URI: http://swapneshsinha.wordpress.com/
Description: nice theme from wordpress labs.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/