WordPress – Gadgetizer Theme Released
来自http://designdisease.com的主题总是很精致,这次带来的是Gadgetizer Theme:

点击查看在线Demo。
下边是来自官方那个的介绍:
Gadgetizer is exactly what it sounds like it would be about. Gadgets. We wanted a simple theme that focused on the products themselves, so we have a big Flickr area in the footer section, as well as a mashup of images right below the featured post. As always, the front page has an easy to use “feature” section so you can easily put on display your most in-depth posts. You can even slot in a nice picture and a post excerpt to accompany the headline by editing the feature-image custom field and setting the category to “Featured”.
We kept it pretty similar in color scheme to the last design, with the colors white, blue, and green. Also we have included the psd files for the logo, robo girl, and for the gadgets snapshots.
The theme is fully widgetized. A special feature of this theme as we use in many of our themes is the logo changer. You can use the default WordPress setting (“blog name”) or you can use your own logo. Upload your logo in the root folder of Gadgetizer theme and name it logo.png or you can use the logo.psd as a template. You will find the source in the root folder of the Tipz theme.
This theme also has a large footer bar that includes a links section, Flickr photostream, and latest comments section. Because some people might not like this option, we also included in the theme options the ability to have this section not show up.
The theme is using a few plugins, with some already integrated into functions.php, so there is no need to install them. The only plugin you need to install manually is FlickrRSS. (FlickrRSS plugin is in the theme folder) (see the demo).
WordPress-AppCloud主题
推荐个主题,AppCloud:

是商城类型的模板,看起来改造成自己用的模板也还不错,有兴趣的可以看下,不过记得看下版权,版权啊版权。
Demo地址:http://demo.icreativelabs.com/ecommerce/
Download地址:http://portfolio.icreativelabs.com/wp-content/plugins/download-monitor/download.php?id=Download+Appcloud
LapOfLuxury Theme Released
designdisease每次出品的Theme都比较经典,这次是LapOfLuxury

Demo地址:http://www.lapofluxury.com/
WordPress-Theme的制作
以下内容建立在有部分HTML基础下,如果有疑问可以Twitter我,EMAIL我,MSN我,留言我,电话我,etc,但是不要QQ我~
WP的主题所在文件夹为XXX\wp-content\themes\,里边每个包都是目录(如果正常的话)。
先来讲下主题的组成,可以先参考这个文章《WordPress -Template System模板系统》。
从该文章中我们可以发现,最最最简单的WP皮肤只需要一个文件,index.php,出于维护和多方合作开发以及修改的简便性来说,个人觉得一个主题至少应该分成以下几个部分:
header.php,里边放HTML的头部,一般是包含文档声明到body开始处,有时候也会包含菜单部分。
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>< ?php bloginfo('name'); ?> < ?php if ( is_single() ) { ?> Blog Archive < ?php } ?> < ?php wp_title(); ?></title>
..................
<body>
