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

Wordpress主题制作第一天

时间:2017-01-15 00:21:39      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:nbsp   站点   style   com   lan   host   题目   themes   apach   

一. 为了跑Wordpress, 装了Apache + PHP + MySQl

二. 看了下Wordpress参考文档, 了解了下主题目录结构

三. 在themes里面新建文件夹 themes->my

    然后my里建了index.php和style.css

    然后在index.php里测试了一下bloginfo()函数,style.css留它空着。今天就到此为止了。

    index.php

<!DOCTYPE html>
<html>
<head>
	<title><?php bloginfo(‘name‘) ?></title>
</head>
<body>
	<div>
	    <p><?php bloginfo(‘name‘) ?></p>
		<p><?php bloginfo(‘description‘) ?></p>
		<p><?php bloginfo(‘wpurl‘) ?></p>
		<p><?php bloginfo(‘url‘) ?></p>
		<p><?php bloginfo(‘admin_email‘) ?></p>
		<p><?php bloginfo(‘charset‘) ?></p>
		<p><?php bloginfo(‘version‘) ?></p>
		<p><?php bloginfo(‘html_type‘) ?></p>
		<p><?php bloginfo(‘text_direction‘) ?></p>
		<p><?php bloginfo(‘language‘) ?></p>
		<p><?php bloginfo(‘stylesheet_url‘) ?></p>
		<p><?php bloginfo(‘stylesheet_directory‘) ?></p>
		<p><?php bloginfo(‘template_url‘) ?></p>
		<p><?php bloginfo(‘pingback_url‘) ?></p>
		<p><?php bloginfo(‘atom_url‘) ?></p>
		<p><?php bloginfo(‘rdf_url‘) ?></p>
		<p><?php bloginfo(‘rss_url‘) ?></p>
		<p><?php bloginfo(‘rss2_url‘) ?></p>
		<p><?php bloginfo(‘comments_atom_url‘) ?></p>
		<p><?php bloginfo(‘comments_rss2_url‘) ?></p>
		<p><?php bloginfo(‘siteurl‘) ?></p>
		<p><?php bloginfo(‘home‘) ?></p>
	</div>
</body>
</html>

首页结果是这样的:

Less is more

又一个WordPress站点

http://localhost

http://localhost

2393661347@qq.com

UTF-8

4.7.1

text/html

ltr

zh-CN

http://localhost/wp-content/themes/my/style.css

http://localhost/wp-content/themes/my

http://localhost/wp-content/themes/my

http://localhost/xmlrpc.php

http://localhost/index.php/feed/atom/

http://localhost/index.php/feed/rdf/

http://localhost/index.php/feed/rss/

http://localhost/index.php/feed/

http://localhost/index.php/comments/feed/atom/

http://localhost/index.php/comments/feed/

http://localhost

http://localhost

 

Wordpress主题制作第一天

标签:nbsp   站点   style   com   lan   host   题目   themes   apach   

原文地址:http://www.cnblogs.com/mmyz-sysu-panjn/p/wp00.html

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