<?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>dcing.net &#187; WordPress</title>
	<atom:link href="http://dcing.net/blog/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://dcing.net</link>
	<description>The portfolio and blog of designcode</description>
	<lastBuildDate>Fri, 25 Dec 2009 21:19:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>New Theme Released for Smashing Magazine</title>
		<link>http://dcing.net/blog/2009/11/08/new-theme-released-for-smashing-magazine.html</link>
		<comments>http://dcing.net/blog/2009/11/08/new-theme-released-for-smashing-magazine.html#comments</comments>
		<pubDate>Sun, 08 Nov 2009 12:24:45 +0000</pubDate>
		<dc:creator>designcode</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://dcing.net/?p=331</guid>
		<description><![CDATA[IF YOU NEED SUPPORT FOR THIS, PLEASE PROCEED TO FOLLOWING URL http://www.smashingthemes.com/free-wordpress-themes/glassical/ Glassical is a glossy two column, widget ready and WordPress 2.8 compatible WordPress theme designed for passionate bloggers. I have used the Embedded Nevis Fonts with Cusfon and theme is designed exclusively for Smashing Magazine. It also uses jQuery Corner library for rounded [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">IF YOU NEED SUPPORT FOR THIS, PLEASE PROCEED TO FOLLOWING URL<br />
<a href="http://www.smashingthemes.com/free-wordpress-themes/glassical/">http://www.smashingthemes.com/free-wordpress-themes/glassical/</a></span></strong></p>
<p>Glassical is a glossy two column, widget ready and WordPress 2.8 compatible WordPress theme designed for passionate bloggers. I have used the Embedded <a rel="external nofollow" href="http://www.tenbytwenty.com/products/typefaces/nevis" target="_blank">Nevis Fonts</a> with <a rel="external nofollow" href="http://cufon.shoqolate.com/" target="_blank">Cusfon</a> and theme is designed exclusively for Smashing Magazine. It also uses <a rel="external nofollow" href="http://www.malsup.com/jquery/corner/" target="_blank">jQuery Corner library</a> for rounded corners. I hope you guys will like it.</p>
<h2>Features</h2>
<ol>
<li>Widget Ready.</li>
<li>Ads on header and Sidebar can be changed via the widgets.</li>
<li><a rel="external nofollow" href="http://wordpress.org/extend/plugins/wp-pagenavi/" target="_blank">WP Pagenavi</a> ready, Just install the plugin and the CSS is already packed with theme.</li>
<li>Supports the new WordPress nested comment system.</li>
</ol>
<h2>Links</h2>
<p>Theme can be viewed in action at<br />
<a href="http://demo.smashingthemes.com/?wptheme=Glassical" target="_blank">http://demo.smashingthemes.com/?wptheme=Glassical</a></p>
<p>Theme can be downloaded from<br />
<a href="http://www.smashingthemes.com/downloads/glassical.zip" target="_blank">http://www.smashingthemes.com/downloads/glassical.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dcing.net/blog/2009/11/08/new-theme-released-for-smashing-magazine.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Problem in get_category_link() in WordPress 2.7</title>
		<link>http://dcing.net/blog/2009/01/11/problem-in-get_category_link-in-wordpress-27.html</link>
		<comments>http://dcing.net/blog/2009/01/11/problem-in-get_category_link-in-wordpress-27.html#comments</comments>
		<pubDate>Sun, 11 Jan 2009 20:58:32 +0000</pubDate>
		<dc:creator>designcode</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress error]]></category>
		<category><![CDATA[wordpress get_category_link()]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://dcing.net/?p=11</guid>
		<description><![CDATA[When I upgraded to WordPress 2.7 I started getting the following error wherever I used the get_the_category() function in my WordPress themes. Catchable fatal error: Object of class WP_Error could not be converted to string in /home/dcing/public_html/wp-content/themes/dcing/category.php on line 52 I thought I would be a common bug, and I can easily find a solution [...]]]></description>
			<content:encoded><![CDATA[<p>When I upgraded to WordPress 2.7 I started getting the following error wherever I used the get_the_category() function in my WordPress themes.</p>
<blockquote><p><strong>Catchable fatal error</strong>:  Object of class WP_Error could not be converted to string in <strong>/home/dcing/public_html/wp-content/themes/dcing/category.php</strong> on line <strong>52</strong></p></blockquote>
<p>I thought I would be a common bug, and I can easily find a solution on Internet so I tried search. But I was not able to find a fix for that problem. So I self debugged the code and managed to sort out a solution. Here are the steps to fix the problem.</p>
<ol>
<li>Open <strong>wp-includes/category-template.php</strong></li>
<li>Search for &#8220;<strong>function get_category_link( $category_id ) {</strong>&#8220;</li>
<li>Now inside that function, search the following lines<br />
<strong>if ( is_wp_error( $category ) )<br />
return $category;</strong></li>
<li>Replace the above 2 lines with following code<br />
<strong>//if ( is_wp_error( $category ) )<br />
//return $category;</strong></li>
</ol>
<p>That should solve the problem. Enjoy WordPressing.</p>
]]></content:encoded>
			<wfw:commentRss>http://dcing.net/blog/2009/01/11/problem-in-get_category_link-in-wordpress-27.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

