首页 > 代码库 > Wordpress主题制作第一天

Wordpress主题制作第一天

一. 为了跑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主题制作第一天