WordPress主题 - dazy-cyan
dazy-cyan is a stylish, 2 columned, cyan and magenta colour based WordPress theme, with Archives template ready.
小众主题一只。
刚刚更新到WordPress 2.5,顺便删除了那个旧的数据库。重新开始一个新的。
在另一个英文blog上,dazy-cyan2月2日就发布了。貌似普遍反应是晃眼。
两栏,绛紫,青蓝。简化了冗长的侧边栏,添加一个存档模板。
截图如下,点击看300*225的。
以下是如何根据存档模板创建存档页。(写下面这些的时候还是2.3,现在2.5的编辑器大变样,我也懒得改了,将就一下吧。)
HEADER
In the header.php, you can put your blog description or feature artical between <div class=”about”> and </div>, so that they will always be listed first on every pages.
Replace examples with your links on the top menu.
By default, links of all the pages created will be shown on the top menu.
To disable this function, find the code in the header.php and remove it
<ul>
<?php wp_list_pages(’depth=1&title_li=’); ?>
</ul>
ARCHIVES
In order to de-clutter the sidebar, I removed the Archive links from the sidebar.
Instead, there is an Archives template in the theme folder called archives.php.
Follow the instructions below, you’ll easily create an Archive links listing page.
- Write a new page and name it “Archives”.
- Choose “Archives Page” from the Page template.

- Publish the page.

- Customizing your Archives page (archives.php) if you like.
- Done.
You can click the screenshot below to see what the default archives page look like. Feel free to make any customizations.
If you still want the Archives links listing on the sidebar, you can simply add the code below to the sidebar.php.
<li><h2><?php _e(’Archives’); ?></h2>
<ul>
<?php wp_get_archives(’type=monthly’); ?>
</ul>
</li>
Original tutorials from Creating an Archive Index (codex.wordpress.org) and WPDesigner.
Filed under: WordPress by 諾
Tags: 简洁, 紫色, WordPress主题, 两栏






Leave a Reply