要列出主题:
至少包括:
/*
Theme Name: Minimum Theme
Description: Test
Author: Test
Version: 1.0
*/
主题的功能:
index.php
必须有一个post循环,因此这将是最基本的功能
index.php
<html>
<head><?php wp_head(); ?></head>
<body>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( \'<h3>\', \'</h3>\' );
the_content();
}
}
wp_footer();
?>
</body>
</html>
索引。php实际上是WordPress可能查找的所有模板文件的后备方法。其余的都是完全可选的,尽管我建议您使用它们。
有关哪些模板可用的更多信息,请参阅此处:
http://codex.wordpress.org/Template_Hierarchy