<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>omiga &#187; 设计</title>
	<atom:link href="http://omiga.org/blog/archives/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://omiga.org/blog</link>
	<description>简单就好</description>
	<lastBuildDate>Thu, 26 Apr 2012 04:18:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress theme C32</title>
		<link>http://omiga.org/blog/archives/1669</link>
		<comments>http://omiga.org/blog/archives/1669#comments</comments>
		<pubDate>Mon, 07 Mar 2011 12:33:31 +0000</pubDate>
		<dc:creator>omiga</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[前端开发]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[C32]]></category>
		<category><![CDATA[ND]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://omiga.org/blog/?p=1669</guid>
		<description><![CDATA[上一个theme(ND)是08年的时候做的，2年多了，一直也没换，期间也做过好几个theme，种种原因，都没有替换上来，感觉是无法超越！-_-! C32也一样，但是毕竟ND已经有了2年多了，怎么都要换换了，而且这两年中，总想要加一些东西进来，可能有插件，但是插件总还是有局限，而且我也很厌烦后台一大堆插件更新提示，所以C32所有的功能都没有依靠插件实现，随机日志、最新评论、评论、相关日志、分页、分类等，都是通过现写的C32_random_posts,C32_recent_comments,C32_comments,C32_related_posts,C32_page_nav,C32_cats这几个函数来实现的。无图片、无插件，低碳环保！ 不经常做theme，每做一次就像第一次做一样，到处翻资料，为了写这几个函数，还去翻源代码，觉得wp异常强大。文件的组织，函数的命名都相当规范，以致有时候自己都能完全猜出要的函数名称，然后到源码或者codex一查果然有，节约了大量时间。 发现了很多无敌的函数和变量，比如： get_posts() get_categories() get_category_link() get_permalink() get_the_tags() get_comments() get_edit_comment_link() esc_url() add_query_arg() get_avatar() get_bookmarks() wp_count_posts() get_pagenum_link() WP_Query/$wp_query $paged current_user_can 部分函数或变量没有官方文档，但是可以去翻翻源码，应该问题都不大。 C32也用了几个HTML5标签和一点CSS3。opera下发表评论的表单控件很cool，placeholder属性很好用，搜索框safari下也多了一个&#8217;x'～··· 分类列表增加了预览最近10篇文章的功能，其实我也想给页码加上这么个功能，暂时没时间先搁一搁。（PS：页码预览已实现！） 另外wordpress合并分类的一个小技巧：在设置-&#62;撰写选项中把某分类设置为默认分类，删除的分类文章将自动归类到默认分类下。 &#160; © omiga for omiga, 2011. &#124; Permalink &#124; 13 comments &#124; Add to del.icio.us Post tags: C32, ND, theme, wordpress]]></description>
			<content:encoded><![CDATA[<p><a href="http://omiga.org/img/c32.jpg"><img class="alignnone size-full wp-image-1679" title="WordPress theme C32" src="http://omiga.org/img/c32.jpg" alt="WordPress theme C32" width="300" height="225" /></a></p>
<p>上一个<a title="WordPress theme ND" href="http://omiga.org/blog/archives/494">theme(ND)</a>是08年的时候做的，2年多了，一直也没换，期间也做过好几个theme，种种原因，都没有替换上来，感觉是无法超越！-_-! C32也一样，但是毕竟ND已经有了2年多了，怎么都要换换了，而且这两年中，总想要加一些东西进来，可能有插件，但是插件总还是有局限，而且我也很厌烦后台一大堆插件更新提示，所以C32所有的功能都没有依靠插件实现，随机日志、最新评论、评论、相关日志、分页、分类等，都是通过现写的C32_random_posts,C32_recent_comments,C32_comments,C32_related_posts,C32_page_nav,C32_cats这几个函数来实现的。无图片、无插件，低碳环保！</p>
<p>不经常做theme，每做一次就像第一次做一样，到处翻资料，为了写这几个函数，还去翻源代码，觉得wp异常强大。文件的组织，函数的命名都相当规范，以致有时候自己都能完全猜出要的函数名称，然后到源码或者<a title="wordpress codex" href="http://codex.wordpress.org/" target="_blank">codex</a>一查果然有，节约了大量时间。</p>
<p>发现了很多无敌的函数和变量，比如：</p>
<ul>
<li><a href="http://codex.wordpress.org/Function_Reference/get_post" target="_blank">get_posts()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_categories" target="_blank">get_categories()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_category_link" target="_blank">get_category_link()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_permalink" target="_blank">get_permalink()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_the_tags" target="_blank">get_the_tags()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_comments" target="_blank">get_comments()</a></li>
<li>get_edit_comment_link()</li>
<li>esc_url()</li>
<li>add_query_arg()</li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_avatar" target="_blank">get_avatar()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_bookmarks" target="_blank">get_bookmarks()</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_count_posts" target="_blank">wp_count_posts()</a></li>
<li>get_pagenum_link()</li>
<li><a href="http://codex.wordpress.org/Function_Reference/WP_Query" target="_blank">WP_Query</a>/<a href="http://codex.wordpress.org/Function_Reference/WP_Query" target="_blank">$wp_query</a></li>
<li>$paged</li>
<li><a href="http://codex.wordpress.org/Function_Reference/current_user_can" target="_blank">current_user_can</a></li>
</ul>
<p>部分函数或变量没有官方文档，但是可以去翻翻<a href="http://core.trac.wordpress.org/browser/trunk" target="_blank">源码</a>，应该问题都不大。</p>
<p>C32也用了几个HTML5标签和一点CSS3。opera下发表评论的表单控件很cool，placeholder属性很好用，搜索框safari下也多了一个&#8217;x'～···</p>
<p>分类列表增加了预览最近10篇文章的功能，其实我也想给页码加上这么个功能，暂时没时间先搁一搁。（PS：页码预览已实现！）</p>
<p>另外wordpress合并分类的一个小技巧：在设置-&gt;撰写选项中把某分类设置为默认分类，删除的分类文章将自动归类到默认分类下。</p>
<p>&nbsp;</p>
<hr />
<p><small>© omiga for <a href="http://omiga.org/blog">omiga</a>, 2011. |
<a href="http://omiga.org/blog/archives/1669">Permalink</a> |
<a href="http://omiga.org/blog/archives/1669#comments">13 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://omiga.org/blog/archives/1669&title=WordPress theme C32">del.icio.us</a>
<br/>
Post tags: <a href="http://omiga.org/blog/archives/tag/c32" rel="tag">C32</a>, <a href="http://omiga.org/blog/archives/tag/nd" rel="tag">ND</a>, <a href="http://omiga.org/blog/archives/tag/theme" rel="tag">theme</a>, <a href="http://omiga.org/blog/archives/tag/wordpress" rel="tag">wordpress</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://omiga.org/blog/archives/1669/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>今年过年不回家！</title>
		<link>http://omiga.org/blog/archives/1568</link>
		<comments>http://omiga.org/blog/archives/1568#comments</comments>
		<pubDate>Thu, 27 Jan 2011 16:23:19 +0000</pubDate>
		<dc:creator>omiga</dc:creator>
				<category><![CDATA[生活/随笔]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[春节]]></category>

		<guid isPermaLink="false">http://omiga.org/blog/?p=1568</guid>
		<description><![CDATA[哥已经7年没回老家了？faint～···原来这么久了，今年还是不回了，一个人在这边过年。 假还没放，计划列了一大堆，希望都能实现。 准备换个theme了，设计稿09年1月份就弄在那里了，一直懒得弄，趁这个假期把它干掉。 2011-02-15最新消息：这个theme其实是做好了，但是哥觉得太难看，没有换上来～··· © omiga for omiga, 2011. &#124; Permalink &#124; 7 comments &#124; Add to del.icio.us Post tags: 2011, theme, 春节]]></description>
			<content:encoded><![CDATA[<p>哥已经7年没回老家了？faint～···原来这么久了，今年还是不回了，一个人在这边过年。</p>
<p>假还没放，计划列了一大堆，希望都能实现。</p>
<p>准备换个theme了，设计稿09年1月份就弄在那里了，一直懒得弄，趁这个假期把它干掉。</p>
<div id="attachment_1569" class="wp-caption alignnone" style="width: 614px"><a href="http://omiga.org/img//simplewell.jpg"><img class="size-full wp-image-1569" title="wordpress theme" src="http://omiga.org/img//simplewell.jpg" alt="wordpress theme" width="604" height="396" /></a><p class="wp-caption-text">wordpress theme</p></div>
<p>2011-02-15最新消息：这个theme其实是做好了，但是哥觉得太难看，没有换上来～···</p>
<hr />
<p><small>© omiga for <a href="http://omiga.org/blog">omiga</a>, 2011. |
<a href="http://omiga.org/blog/archives/1568">Permalink</a> |
<a href="http://omiga.org/blog/archives/1568#comments">7 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://omiga.org/blog/archives/1568&title=今年过年不回家！">del.icio.us</a>
<br/>
Post tags: <a href="http://omiga.org/blog/archives/tag/2011" rel="tag">2011</a>, <a href="http://omiga.org/blog/archives/tag/theme" rel="tag">theme</a>, <a href="http://omiga.org/blog/archives/tag/%e6%98%a5%e8%8a%82" rel="tag">春节</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://omiga.org/blog/archives/1568/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>wordpress主题—ND</title>
		<link>http://omiga.org/blog/archives/494</link>
		<comments>http://omiga.org/blog/archives/494#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:30:38 +0000</pubDate>
		<dc:creator>omiga</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ND]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://omiga.org/blog/?p=494</guid>
		<description><![CDATA[前几天说要做个主题，原因有四： 原来的techicon真的用了很久了，虽然很好，还是视觉疲劳了 techicon不是自己做的，虽然我改了很多东西～··· techicon的宽度是固定的，晚上回家用宽屏看，很不爽～ 呃～没有4了～··· 其实早就在说自己做个theme，也画过好几张图，也写了几段代码，但是每次在中途就被我自己扼杀在摇篮中～:) ND其实和techicon在布局上差别不大，我太喜欢techicon的三栏布局了，所以继续沿用。配色最开始主体部分用的白色背景，着实闪眼睛，液晶屏更甚，所以最后加了点灰色，减小了对比度，看着舒服多了。 遗憾： CSS中两处使用了hack～···（静态页面很完美，套上WP的主题标签，出问题了～至今没有得解！） Micro-Blogging页面fanfou API中的时间格式太BT了吧~很脑残！ widget支持有点问题，但是我不用widget，无视～··· © omiga for omiga, 2008. &#124; Permalink &#124; 10 comments &#124; Add to del.icio.us Post tags: blog, css, ND, theme, wordpress]]></description>
			<content:encoded><![CDATA[<p>前几天说要做个<a href="http://omiga.org/blog/archives/473" target="_blank">主题</a>，原因有四：</p>
<ol>
<li>原来的<a href="http://www.blogohblog.com/wordpress-theme-techicon/" target="_blank">techicon</a>真的用了很久了，虽然很好，还是视觉疲劳了</li>
<li>techicon不是自己做的，虽然我改了很多东西～···</li>
<li>techicon的宽度是固定的，晚上回家用宽屏看，很不爽～</li>
<li>呃～没有4了～···</li>
</ol>
<p>其实早就在说自己做个theme，也画过好几张图，也写了几段代码，但是每次在中途就被我自己扼杀在摇篮中～:)</p>
<p>ND其实和techicon在布局上差别不大，我太喜欢techicon的三栏布局了，所以继续沿用。配色最开始主体部分用的白色背景，着实闪眼睛，液晶屏更甚，所以最后加了点灰色，减小了对比度，看着舒服多了。</p>
<p>遗憾：</p>
<ol>
<li>CSS中两处使用了hack～···（静态页面很完美，套上WP的主题标签，出问题了～至今没有得解！）</li>
<li>Micro-Blogging页面fanfou API中的时间格式太BT了吧~很脑残！</li>
<li>widget支持有点问题，但是我不用widget，无视～···</li>
</ol>
<p><a href="http://omiga.org/img//wp_theme_nd.jpg"><img class="alignnone size-full wp-image-1671" title="wp_theme_nd" src="http://omiga.org/img//wp_theme_nd.jpg" alt="WordPress theme ND" width="690" height="993" /></a></p>
<hr />
<p><small>© omiga for <a href="http://omiga.org/blog">omiga</a>, 2008. |
<a href="http://omiga.org/blog/archives/494">Permalink</a> |
<a href="http://omiga.org/blog/archives/494#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://omiga.org/blog/archives/494&title=wordpress主题—ND">del.icio.us</a>
<br/>
Post tags: <a href="http://omiga.org/blog/archives/tag/blog" rel="tag">blog</a>, <a href="http://omiga.org/blog/archives/tag/css" rel="tag">css</a>, <a href="http://omiga.org/blog/archives/tag/nd" rel="tag">ND</a>, <a href="http://omiga.org/blog/archives/tag/theme" rel="tag">theme</a>, <a href="http://omiga.org/blog/archives/tag/wordpress" rel="tag">wordpress</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://omiga.org/blog/archives/494/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>设计师决胜商界的十大金科玉律</title>
		<link>http://omiga.org/blog/archives/24</link>
		<comments>http://omiga.org/blog/archives/24#comments</comments>
		<pubDate>Thu, 15 Nov 2007 17:47:57 +0000</pubDate>
		<dc:creator>omiga</dc:creator>
				<category><![CDATA[设计]]></category>

		<guid isPermaLink="false">http://omiga.org/?p=24</guid>
		<description><![CDATA[1.永不与付款给你的人争论或对抗，他/她们肯定比你更关心设计后的结果。 2.作品并非设计主导的，在为艺术家表达自己之前，你的设计首先及主要为你的客户用于传递一个市场信息。 3.要有耐性和你的客户沟通。紧记他们并非设计师，故须用他们的语言来阐述你的观点。 4.我相信每个你的设计和作品背后都有一个意思和故事，但你不用心去说明，我又如何可完全明白呢? 5.尊重期限时间，做到将可改善你的可信任度和增进你的事业发展。 6.人们喜欢与注重外型的人倾谈，意思是清洁及整齐。型格并非是肮脏及混乱，你能领略我的意思吗? 7.守时是十分重要的，特别是专业人员，专业人员包括设计师。 8.不要在讨论价钱过程中动怒，这只是商业而已，他们并非在羞辱你的作品。你要知道，他们并没有任何理由去做此事的。 9.你的名气是来自商业推介或获取奖项。不要忘记去获取更多奖项，它会使顾客更相信你。 10.无论任何理由，永不要企图抄袭别人的设计。这会是任何设计师死亡之路。 © omiga for omiga, 2007. &#124; Permalink &#124; No comment &#124; Add to del.icio.us Post tags: 设计]]></description>
			<content:encoded><![CDATA[<p>1.永不与付款给你的人争论或对抗，他/她们肯定比你更关心设计后的结果。</p>
<p>2.作品并非设计主导的，在为艺术家表达自己之前，你的设计首先及主要为你的客户用于传递一个市场信息。</p>
<p>3.要有耐性和你的客户沟通。紧记他们并非设计师，故须用他们的语言来阐述你的观点。</p>
<p>4.我相信每个你的设计和作品背后都有一个意思和故事，但你不用心去说明，我又如何可完全明白呢?</p>
<p>5.尊重期限时间，做到将可改善你的可信任度和增进你的事业发展。</p>
<p>6.人们喜欢与注重外型的人倾谈，意思是清洁及整齐。型格并非是肮脏及混乱，你能领略我的意思吗?</p>
<p>7.守时是十分重要的，特别是专业人员，专业人员包括设计师。</p>
<p>8.不要在讨论价钱过程中动怒，这只是商业而已，他们并非在羞辱你的作品。你要知道，他们并没有任何理由去做此事的。</p>
<p>9.你的名气是来自商业推介或获取奖项。不要忘记去获取更多奖项，它会使顾客更相信你。</p>
<p>10.无论任何理由，永不要企图抄袭别人的设计。这会是任何设计师死亡之路。</p>
<hr />
<p><small>© omiga for <a href="http://omiga.org/blog">omiga</a>, 2007. |
<a href="http://omiga.org/blog/archives/24">Permalink</a> |
<a href="http://omiga.org/blog/archives/24#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://omiga.org/blog/archives/24&title=设计师决胜商界的十大金科玉律">del.icio.us</a>
<br/>
Post tags: <a href="http://omiga.org/blog/archives/tag/design" rel="tag">设计</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://omiga.org/blog/archives/24/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

