在学习三里分析了自带的一个例子,本节我们就自己仿照他做个简单的吧,重点是调用 wordpress 封装好的函数和类,css 和 html 可以稍好在调整。
将 wp 带的例子复制一份处理,重新名个名字。
清空 index.php 和 style.css 的文件内容。修改 style.css 的头部如下:
<span>/*</span><span> 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. </span><span>*/</span>
<html> <head> <title><?php wp_title(); ?></title> </head> <body> <?php <span>while</span> (have_posts()) :<span> the_post(); </span>?> <h1><?php the_title(); ?></h1> <p> <?php the_content() ?> </p> <hr/> <?php <span>endwhile</span>; ?> </body> </html>
上面是 index.php 的代码,这样一个没有样式的纯简单的主题就好了
如果我们对 css 和 html 很熟悉的话,就可以从头开始进行版面的设计了。这方面我不太在行呀。
「点点赞赏,手留余香」
还没有人赞赏,快来当第一个赞赏的人吧!
给酷奇打赏
×
予人玫瑰,手有余香
- 2¥
- 5¥
- 10¥
- 20¥
- 50¥
¥2
wordpress 学习四:一个简单的自定义主题 为主题派网版权所有,转载请注明出处,所有资源不提供技术支持。