<?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>licream&#039;s blog &#187; themes</title>
	<atom:link href="http://www.licream.net/tag/themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.licream.net</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 02:46:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>完美解决高亮代码问题　</title>
		<link>http://www.licream.net/syntaxhighlighter.html/</link>
		<comments>http://www.licream.net/syntaxhighlighter.html/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 17:09:20 +0000</pubDate>
		<dc:creator>Licream</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[网络相关]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[高亮代码]]></category>

		<guid isPermaLink="false">http://www.licream.net/?p=357</guid>
		<description><![CDATA[上篇文章贴上的代码居然插件起不到作用，郁闷死了。后台设置又能显示。这周末基本都在外面，今晚好好整下，呵呵 测试了一晚上才弄出来。查看插件代码，里面定义了两个函数，分别将代码高亮的css和Js插入网页头部和尾部，这是插入部分： add_action('wp_head','insert_header'); add_action('wp_footer','insert_footer'); 然后打开页面，查看输出的源代码， 发现header里已经加入了代码高亮的css，可是footer却没有发现本应该出现的引用JS的代码。 于是打开footer.php模板文件，对比了下，发现缺少wp_footer函数，呵呵，我想问题就出在这，现在想起来了，主题之前支持Growl效果，但在IE里常出脚本错误，再说这功能我不怎么常用到，所以删掉，哪知不小心把这函数给删了。郁闷。 所以在footer模版的body上面添加&#60; ?php wp_footer(); ?&#62;函数，即可！ 求助：这插件支持十几种语言代码。但是他都会调用JS，我想让他在首页不显示效果。该怎么改下呢？ //经zww达人提供的方法 &#60;?php if (is_single() or is_page()) { ?&#62;...]]></description>
			<content:encoded><![CDATA[<p>上篇文章贴上的代码居然插件起不到作用，郁闷死了。后台设置又能显示。这周末基本都在外面，今晚好好整下，呵呵<br />
测试了一晚上才弄出来。查看插件代码，里面定义了两个函数，分别将代码高亮的css和Js插入网页头部和尾部，这是插入部分：</p>
<pre class="brush: php;">
add_action('wp_head','insert_header');
add_action('wp_footer','insert_footer');
</pre>
<p><span id="more-357"></span><br />
然后打开页面，查看输出的源代码， 发现header里已经加入了代码高亮的css，可是footer却没有发现本应该出现的引用JS的代码。</p>
<p>于是打开footer.php模板文件，对比了下，发现缺少wp_footer函数，呵呵，我想问题就出在这，现在想起来了，主题之前支持Growl效果，但在IE里常出脚本错误，再说这功能我不怎么常用到，所以删掉，哪知不小心把这函数给删了。郁闷。<br />
所以在footer模版的body上面添加&lt; ?php wp_footer(); ?&gt;函数，即可！</p>
<p>求助：这插件支持十几种语言代码。但是他都会调用JS，我想让他在首页不显示效果。该怎么改下呢？</p>
<p>//经zww达人提供的方法</p>
<pre class="brush: php;">
&lt;?php if (is_single() or is_page()) { ?&gt;
&lt;?php wp_head(); ?&gt;
&lt;?php } ?&gt;
</pre>
<p>footer就改成：< ?php wp_footer(); ?></p>
]]></content:encoded>
			<wfw:commentRss>http://www.licream.net/syntaxhighlighter.html/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>本站已添加的收藏分享代码</title>
		<link>http://www.licream.net/favorite-share-code.html/</link>
		<comments>http://www.licream.net/favorite-share-code.html/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 20:25:13 +0000</pubDate>
		<dc:creator>Licream</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[网络相关]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Favorite]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.licream.net/?p=355</guid>
		<description><![CDATA[最近对主题的改动相当多，想总结一下，但涉及的内容比较多，恐怕一次性写完的长篇大论怕难看完额，所以分段分享，这样标题也明确。呵呵， 我对PHP技术不懂写不出什么代码出来，基本我使用的方法都来自于网络及各大博客里技术文章阿，无奈的我只会copy。发此贴第一为了分享，二为了收藏以作备用－ －。 直接上代码了。 首先把下面的代码复制到single.php文件自已主题的相应文置，我放在标签下面。（我的标签已经放在标题上面去了）。 &#60;p class=&#34;follow&#34;&#62; 原文链接 :&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34;&#62;&#60; ?php the_permalink() ?&#62;&#60;/a&#62;&#60;br /&#62; 转载原创文章请注明来源:&#60;a href=&#34;&#60;?php bloginfo('url');?&#62;&#34; target=&#34;_blank&#34;&#62;...]]></description>
			<content:encoded><![CDATA[<p>最近对主题的改动相当多，想总结一下，但涉及的内容比较多，恐怕一次性写完的长篇大论怕难看完额，所以分段分享，这样标题也明确。呵呵，<br />
我对PHP技术不懂写不出什么代码出来，基本我使用的方法都来自于网络及各大博客里技术文章阿，无奈的我只会copy。发此贴第一为了分享，二为了收藏以作备用－ －。<br />
直接上代码了。<br />
首先把下面的代码复制到single.php文件自已主题的相应文置，我放在标签下面。（我的标签已经放在标题上面去了）。</p>
<p><span id="more-355"></span></p>
<pre class="brush: xml;">
 &lt;p class=&quot;follow&quot;&gt;
原文链接 :&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot;&gt;&lt; ?php the_permalink() ?&gt;&lt;/a&gt;&lt;br /&gt;
转载原创文章请注明来源:&lt;a href=&quot;&lt;?php bloginfo('url');?&gt;&quot; target=&quot;_blank&quot;&gt; &lt; ?php bloginfo('name');?&gt;&lt;/a&gt;&lt;br /&gt;
订阅本博：&lt;a href=&quot;http://www.licream.net/feed&quot;&gt;RSS订阅&lt;/a&gt; ( &lt;a href=&quot;http://fusion.google.com/add?feedurl=http://www.licream.net/feed/&quot;&gt;Google Reader&lt;/a&gt;
 / &lt;a href=&quot;http://reader.youdao.com/#url=http://www.licream.net/feed/&quot;&gt;有道&lt;/a&gt;
 / &lt;a href=&quot;http://mail.qq.com/cgi-bin/feed?u=http://www.licream.net/feed/&quot;&gt;QQ邮箱&lt;/a&gt;
 / &lt;a href=&quot;http://www.xianguo.com/subscribe.php?url=http://www.licream.net/feed/&quot;&gt;鲜果&lt;/a&gt;
 / &lt;a href=&quot;http://9.douban.com/reader/subscribe?url=http://www.licream.net/feed/&quot;&gt;豆瓣&lt;/a&gt;
 / &lt;a href=&quot;http://www.zhuaxia.com/add_channel.php?url=http://www.licream.net/feed/&quot;&gt;抓虾&lt;/a&gt;)&lt;br /&gt;
收藏分享本文：&lt;a title=&quot;转贴到校内人人网&quot; href=&quot;javascript:void((function(s,d,e){if(/xiaonei\.com/.test(d.location))return;var%20f='http://share.xiaonei.com/share/buttonshare.do?link=',u=d.location,l=d.title,p=[e(u),'&amp;amp;title=',e(l)].join('');function%20a(){if(!window.open([f,p].join(''),'xnshare',['toolbar=0,status=0,resizable=1,width=626,height=436,left=',(s.width-626)/2,',top=',(s.height-436)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent));&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/renren.gif&quot; alt=&quot;分享到校内人人网&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(kaixin=window.open('http://www.kaixin001.com/~repaste/repaste.php?&amp;amp;rurl='+escape(d.location.href)+'&amp;amp;rtitle='+escape(d.title)+'&amp;amp;rcontent='+escape(d.title),'kaixin'));kaixin.focus();&quot; title=&quot;转贴到开心网&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/kaixin.gif&quot; alt=&quot;转贴到开心网&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;添加到QQ书签&quot; href=&quot;javascript:window.open('http://shuqian.qq.com/post?from=3&amp;amp;title='+encodeURIComponent(document.title)+'&amp;amp;uri='+encodeURIComponent(document.location.href)+'&amp;amp;jumpback=2&amp;amp;noui=1','favit','width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/qq.png&quot; alt=&quot;QQ书签&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a href=&quot;http://app.foxling.cn/dilink/share.asp?u=&lt;?php the_permalink(); ?&gt;&amp;t=&lt; ?php the_title(); ?&gt;&quot; title=&quot;嘀咕一下&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/digu.png&quot;/&gt;&lt;/a&gt;

&lt;a href=&quot;javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);location=%22http://zuosa.com/collect/Collect.aspx?t=%22+encodeURIComponent(t)+%22&amp;u=%22+encodeURIComponent(u);void%200&quot; title=&quot;你在做啥&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/zuosa.gif&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;添加到百度搜藏&quot; href=&quot;javascript:u=location.href;t=document.title;t=t.substr(0,76);c=%22%22+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);c=c.substr(0,180);var url=%22http://cang.baidu.com/do/add?it=%22+encodeURIComponent(t)+%22&amp;amp;iu=%22+encodeURIComponent(u)+%22&amp;amp;dc=%22+encodeURIComponent(c)+%22&amp;amp;fr=ien#nw=1%22;window.open(url,'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');void 0&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/baidu.gif&quot; alt=&quot;百度搜藏&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&amp;amp;title='+escape(d.title)+'&amp;amp;url='+escape(d.location.href)+'&amp;amp;desc='+escape(t),'vivi','scrollbars=no,width=480,height=480,left=75,top=20,status=no,resizable=yes'));vivi.focus();&quot; title=&quot;收藏到新浪ViVi&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/vivi.gif&quot; alt=&quot;Sina ViVi&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;收藏到Google书签&quot; href=&quot;javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('http://www.google.com/bookmarks/mark?op=edit&amp;amp;output=popup&amp;amp;bkmk='+c(b.location)+'&amp;amp;title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=420px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/googlebookmark.png&quot; alt=&quot;Google书签&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;添加到雅虎收藏&quot; onclick=&quot;window.open('http://myweb.cn.yahoo.com/popadd.html?url='+encodeURIComponent(document.location.href)+'&amp;amp;title='+encodeURIComponent(document.title), 'Yahoo','scrollbars=yes,width=440,height=440,left=80,top=80,status=yes,resizable=yes');&quot; href=&quot;javascript:;&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/yahoo.gif&quot; alt=&quot;yahoo收藏&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;保存到del.icio.us美味书签&quot; href=&quot;javascript:(function(){f='http://delicious.com/save?url='+encodeURIComponent(window.location.href)+'&amp;amp;title='+encodeURIComponent(document.title)+'&amp;amp;v=5&amp;amp;';a=function(){if(!window.open(f+'noui=1&amp;amp;jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/delicious.gif&quot; alt=&quot;Del.icio.us&quot; border=&quot;0&quot; height=&quot;16&quot; width=&quot;16&quot;/&gt;&lt;/a&gt;

&lt;a title=&quot;推荐到digg.com&quot; href=&quot;javascript:location.href='http://digg.com/submit?phase=2&amp;amp;url='+encodeURIComponent(location.href)+'&amp;amp;title='+encodeURIComponent(document.title)&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/digg.gif&quot; alt=&quot;digg&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;

&lt;a href=&quot;javascript:void(location.href='https://twitter.com/home?status=Now%20reading%20&lt;&lt;'+encodeURIComponent(document.title)+'&gt;&gt;%20'+encodeURIComponent(location.href))&quot; title=&quot;分享到 Twitter&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/twitter.png&quot; alt=&quot;分享到twitter&quot;/&gt;&lt;/a&gt;

 &lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&amp;u='+escape(d.location.href)+'&amp;c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/365key.gif&quot; title=&quot;收藏到365Key&quot; /&gt;&lt;/a&gt; 

 &lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(yesky=window.open('http://hot.yesky.com/dp.aspx?t='+escape(d.title)+'&amp;u='+escape(d.location.href)+'&amp;c='+escape(t)+'&amp;st=2','yesky','scrollbars=no,width=400,height=480,left=75,top=20,status=no,resizable=yes'));yesky.focus();&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/yesky.gif&quot;  title=&quot;收藏到天极&quot; /&gt;&lt;/a&gt; 

&lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://my.poco.cn/fav/storeIt.php?t='+escape(d.title)+'&amp;u='+escape(d.location.href)+'&amp;c='+escape(t)+'&amp;img=http://www.h-strong.com/blog/logo.gif','keyit','scrollbars=no,width=475,height=575,status=no,resizable=yes'));keyit.focus();&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/poco.gif&quot;  title=&quot;收藏到POCO&quot;/&gt;&lt;/a&gt; 

&lt;a href=&quot;javascript:t=document.title;u=location.href;e=document.selection?(document.selection.type!='None'?document.selection.createRange().text:''):(document.getSelection?document.getSelection():'');void(open('http://bookmark.hexun.com/post.aspx?title='+escape(t)+'&amp;url='+escape(u)+'&amp;excerpt='+escape(e),'HexunBookmark','scrollbars=no,width=600,height=450,left=80,top=80,status=no,resizable=yes'));&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/hexun.gif&quot;  title=&quot;收藏到和迅&quot; /&gt;&lt;/a&gt; 

&lt;a href=&quot;javascript:d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(blog=window.open('http://www.bolaa.com/CommendBlog/SmallLogin.aspx?title='+escape(d.title)+'&amp;newspath='+escape(d.location.href)+'&amp;subtitle='+escape(t),'bolaa','width=400px,height=400px'));blog.focus();&quot;&gt;&lt;img src=&quot;http://www.licream.net/wp-content/themes/istudio-theme/resources/bolaa.gif&quot;  title=&quot;收藏到博拉&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
</pre>
<p>再到style.css添加一段样式代码：</p>
<pre class="brush: css;">
.follow{background:#dbf3fd;border:1px #dcddd6;font-size:11px;width:600px;margin:10px 15px;padding:10px;}</pre>
<p>可以说也省了一个插件哈，样式代码我copy &#8220;zww&#8221;的，HOHO。添加这个是不是觉得增加互动性呢，如果你也是爱折腾的，想减少插件想法，这个非常适合你啊。哈哈</p>
]]></content:encoded>
			<wfw:commentRss>http://www.licream.net/favorite-share-code.html/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>又换了张主题</title>
		<link>http://www.licream.net/tongbumicro.html/</link>
		<comments>http://www.licream.net/tongbumicro.html/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 15:01:59 +0000</pubDate>
		<dc:creator>Licream</dc:creator>
				<category><![CDATA[生活杂记]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.licream.net/%e5%8f%88%e6%8d%a2%e4%ba%86%e5%bc%a0%e4%b8%bb%e9%a2%98.html</guid>
		<description><![CDATA[不知是我审美有问题还是怎么着,在网上没找到一个能让我喜欢的,哎.自已又没那能力做,总感觉我的没你们的好看, 真不想再折腾了,在Chrome里看到这主题,特效很不错.看上去还很顺眼,IE里看不出那特效,自已不知道这作者用了什么东西.还省了不少插件.希望这个能让我安心啊!]]></description>
			<content:encoded><![CDATA[<p>不知是我审美有问题还是怎么着,在网上没找到一个能让我喜欢的,哎.自已又没那能力做,总感觉我的没你们的好看, 真不想再折腾了,在Chrome里看到这主题,特效很不错.看上去还很顺眼,IE里看不出那特效,自已不知道这作者用了什么东西.还省了不少插件.希望这个能让我安心啊!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.licream.net/tongbumicro.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wp的主题theme资源</title>
		<link>http://www.licream.net/wpthemes.html/</link>
		<comments>http://www.licream.net/wpthemes.html/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 05:14:13 +0000</pubDate>
		<dc:creator>Licream</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.licream.net/?p=244</guid>
		<description><![CDATA[Wp的主题theme资源

theme集散地:
wordpress theme中文站- http://wp-theme.cn
wordpress主题中文站- http://wordpresstheme.cn
theme viewer- http://themes.wordpress.net
UnMatched Themes - www.unmatchedthemes.com
Kaushal Sheth - www.kaushalsheth.com/themes
Wordpress Themes ZA - http://wordpressthemes.co.za

..........]]></description>
			<content:encoded><![CDATA[<p><span class="bold">Wp的主题theme资源,今天忙于找主题，目前为止还没找到心意的，郁闷。先收集这文章慢慢找，呵呵</span></p>
<p><span style="font-size: small;">theme集散地:</span><br />
wordpress theme中文站- <a href="http://wp-theme.cn/" target="_blank">http://wp-theme.cn</a><br />
wordpress主题中文站- <a href="http://wordpresstheme.cn/" target="_blank">http://wordpresstheme.cn</a><br />
theme viewer- <a href="http://themes.wordpress.net/" target="_blank">http://themes.wordpress.net</a><br />
UnMatched Themes &#8211; <a href="http://www.unmatchedthemes.com/" target="_blank">www.unmatchedthemes.com</a><br />
Kaushal Sheth &#8211; www.kaushalsheth.com/themes<br />
Wordpress Themes ZA &#8211; http://wordpressthemes.co.za<br />
BlogFlux &#8211; <a href="http://themes.blogflux.com/wordpress" target="_blank">http://themes.blogflux.com/wordpress</a><br />
WP Designer &#8211; <a href="http://www.wpdesigner.com/" target="_blank">www.wpdesigner.com</a><br />
WP Bpard &#8211; <a href="http://www.wpboard.com/themes" target="_blank">www.wpboard.com/themes</a><br />
Templates Browser &#8211; <a href="http://www.templatesbrowser.com/" target="_blank">www.templatesbrowser.com</a><br />
ThemeVibes &#8211; <a href="http://board.themevibes.com/" target="_blank">http://board.themevibes.com</a><br />
GFX Edit &#8211; <a href="http://www.gfxedit.com/" target="_blank">www.gfxedit.com</a><br />
WP Skins &#8211; <a href="http://www.wpskins.org/" target="_blank">www.wpskins.org</a><br />
Desperate Curiosity by www.writerspace.netRockin<br />
Themes &#8211; <a href="http://www.rockinthemes.com/" target="_blank">www.rockinthemes.com</a><br />
OS Skins &#8211; <a href="http://www.osskins.com/" target="_blank">www.osskins.com</a><br />
Themesbase &#8211; <a href="http://www.themesbase.com/" target="_blank">www.themesbase.com</a><br />
<a href="http://www.johntp.com/wp-skins" target="_blank">http://www.johntp.com/wp-skins</a><br />
Wordpress Loser &#8211; <a href="http://www.wordpressloser.com/" target="_blank">www.wordpressloser.com</a><br />
Performancing Themes &#8211; <a href="http://themes.performancing.com/" target="_blank">http://themes.performancing.com</a><br />
Forumer &#8211; <a href="http://themes.forumer.it/" target="_blank">http://themes.forumer.it</a><br />
WP Theme Gallery &#8211; <a href="http://www.wpthemegallery.com/" target="_blank">www.wpthemegallery.com</a><br />
Wordpress WOW &#8211; <a href="http://www.wordpresswow.com/" target="_blank">www.wordpresswow.com</a><br />
WP Theme Park &#8211; <a href="http://wpthemepark.com/themes" target="_blank">http://wpthemepark.com/themes</a><br />
Micfo &#8211; www.micfo.com/free-wordpress-theme<br />
Skins for WP &#8211; <a href="http://www.skinsforwp.com/" target="_blank">www.skinsforwp.com</a><br />
Wordpress Theme &#8211; <a href="http://www.wordpresstheme.com/" target="_blank">http://www.wordpresstheme.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.licream.net/wpthemes.html/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
