码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress学习四: 一个简单的自定义主题

时间:2015-06-26 00:14:32      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

在学习三里分析了自带的一个例子,本节我们就自己仿照他做个简单的吧,重点是调用wordpress封装好的函数和类,css和html可以稍好在调整。

将wp带的例子复制一份处理,重新名个名字。

清空index.php和style.css的文件内容。修改style.css的头部如下:

/*
Theme Name: simplicity
Theme URI: https://mxyb.net/
Author: ljw
Author URI: https://mxyb.net/
Description: test
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you‘ve learned with others.
*/
<html>
<head>
    <title><?php wp_title(); ?></title>
</head>
<body>

<?php while (have_posts()) :
    the_post();
    ?>
    <h1><?php the_title(); ?></h1>
    <p>
        <?php the_content() ?>
    </p>
    <hr/>
<?php endwhile; ?>
</body>
</html>

上面是index.php的代码,这样一个没有样式的纯简单的主题就好了

技术分享

如果我们对css和html很熟悉的话,就可以从头开始进行版面的设计了。这方面我不太在行呀。

wordpress学习四: 一个简单的自定义主题

标签:

原文地址:http://www.cnblogs.com/kwliu/p/4601155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!