css 主题开发的最小模板文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 主题开发的最小模板文件相关的知识,希望对你有一定的参考价值。

## Minimum Template Files
- style.css
- index.php


## Plugin
- Jetpack
- Contact Form 7


## Reference :
- [How to Build a Responsive WordPress Theme with Bootstrap](http://blog.teamtreehouse.com/responsive-wordpress-bootstrap-theme-tutorial)
- [WordPress Theme Development Basics: Required Files & Template Hierarchy](https://ithemes.com/2017/07/14/wordpress-theme-development-basics/)
- [Wordpress テーマファイルを作るのに必要最低限なファイル](http://qiita.com/nagasawaaaa/items/831dfaf137639f54a664)
<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>
/*
Theme Name: Minimum Theme
Theme URI: http://minimumtheme.com
Description: A description about the theme
Author: Author Name
Author URI: http://www.author.com
Version: 1.0
Tags: responsive, black, white, columns, custom menu, etc.
*/

以上是关于css 主题开发的最小模板文件的主要内容,如果未能解决你的问题,请参考以下文章

从无到有开发自己的Wordpress博客主题---局部模板的准备

将自定义 css 添加到 wordpress 中的页面模板

如何重命名 CSS 规则?

css WordPress - 儿童主题 - style.css模板

css Gist主题的模板

使用 css 变量(没有 SASS/LESS)设置媒体查询的最小/最大宽度?