<?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>Chromic Design &#187; Wordpress</title>
	<atom:link href="http://www.chromicdesign.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chromicdesign.com</link>
	<description>Design With A Chrome</description>
	<lastBuildDate>Fri, 06 Aug 2010 05:59:37 +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>WordPress 2.6 Released.</title>
		<link>http://www.chromicdesign.com/2008/07/wordpress-26-released.html</link>
		<comments>http://www.chromicdesign.com/2008/07/wordpress-26-released.html#comments</comments>
		<pubDate>Thu, 17 Jul 2008 10:47:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress 2.6 Released]]></category>

		<guid isPermaLink="false">http://www.chromicdesign.com/?p=113</guid>
		<description><![CDATA[New version of wordpress is released few days back. The new wordpress release brings few new useful features. Some of the new features and improvements were listed below Word count: To get the number of words in th post. Image captions. Bulk management of plugins. A completely revamped image control to allow for easier inserting, [...]]]></description>
			<content:encoded><![CDATA[<p>New version of wordpress is released few days back. The new wordpress release brings few new useful features. Some of the new features and improvements were listed below</p>
<ul>
<li> Word count: To get the number of words in th post.</li>
<li>Image captions.</li>
<li>Bulk management of plugins.</li>
<li>A completely revamped image control to allow for easier inserting, floating, and resizing. It’s now fully integrated with the WYSIWYG.</li>
<li>Drag-and-drop reordering of Galleries.</li>
<li>Plugin update notification bubble.</li>
<li>Remote publishing via XML-RPC and APP is now secure (off) by default, but you can turn it on easily through the options screen.</li>
<li>Full SSL support in the core, and the ability to force SSL for security.</li>
<li>You can now have many thousands of pages or categories with no interface issues.</li>
<li>Ability to move your wp-config file and wp-content directories to a custom location, for “clean” SVN checkouts.</li>
<li>A number of proactive security enhancements, including cookies and database interactions.</li>
<li>Stronger better faster versions of TinyMCE, jQuery, and jQuery UI.</li>
</ul>
<p>You can find more details in <a title="Wordpress" href="http://www.wordpress.org/" target="_blank">wordpress.org</a>.</p>
<blockquote><p>I’m happy to announce that version 2.6 of WordPress.org is now available, almost a month ahead schedule. Version 2.6 “Tyner,” named for jazz pianist McCoy Tyner, contains a number of new features that make WordPress a more powerful CMS: you can now track changes to every post and page and easily post from wherever you are on the web, <a href="http://wordpress.org/development/2008/07/wordpress-26-tyner/">plus dozens more…</a><br />
<a href="http://www.wordpress.org/">www.wordpress.org</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.chromicdesign.com/2008/07/wordpress-26-released.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Blogroll Icon</title>
		<link>http://www.chromicdesign.com/2008/06/wordpress-blogroll-icon.html</link>
		<comments>http://www.chromicdesign.com/2008/06/wordpress-blogroll-icon.html#comments</comments>
		<pubDate>Thu, 19 Jun 2008 00:40:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XHTML & CSS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Designing]]></category>

		<guid isPermaLink="false">http://www.chromicdesign.com/?p=43</guid>
		<description><![CDATA[After a long pause I came back with this tweak for wordpress. Here it comes, since I work a lot with wordpress these days. I came across this wordpress tweak when one of my client wants a Blogroll Icon to be displayed along with the blogroll link. So here&#8217;s the steps on &#8216;How to show [...]]]></description>
			<content:encoded><![CDATA[<p>After a long pause I came back with this tweak for wordpress. Here it comes, since I work a lot with wordpress these days. <img src='http://www.chromicdesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I came across this wordpress tweak when one of my client wants a Blogroll Icon to be displayed along with the blogroll link. So here&#8217;s the steps on &#8216;How to show a Blogroll Icon&#8217; in wordpress blog. Originally, what you have with wordpress blogroll is a list of links to websites and blogs. So to show image beside the blogroll link (most probably on the right side of the link text), perform the following steps.</p>
<p><strong>Step1:</strong><br />
First you need to get the plugin ZocPowerblogroll from his website. Download the plugin and this plugin will do most of the work for us.<br />
<span id="more-43"></span><br />
<strong>Step2:</strong><br />
Before activation of the plugin, you have to put this funtion in your &#8216;sidebar.php&#8217;. Placed this function</p>
<pre name="code" class="php">
&lt;?php
wp_zoc_powerblogroll();
?&gt;
</pre>
<p>in your sidebar where you want the blogroll to appear. If your template is widgetized, you need to keep this function outside of the widget &#8216;if&#8217; condition, place before or above this &#8216;if&#8217; condition</p>
<pre name="code" class="php">
&lt;?php
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('lsidebar') ):
?&gt;
</pre>
<p><strong>Step3:</strong><br />
Load the plugin in the plugin directory, activate the plugin and you are ready to go. This plugin is compatible upto wordpress version 2.5.x. So you will not have any problem here. You may want to change how the blogroll is displayed by adding simple CSS code in the &#8216;style.css&#8217;.</p>
<p><strong>Step4:</strong><br />
Now, to show the icon in the blogroll, you need to have the icon files. You have two options, you can upload the icons directly to your server in your wp-content directory or you can get the links of an icon from freeicon websites. Now, you need to include the link of the icons in your blogroll links.</p>
<p><strong>Step5:</strong><br />
Log in to the admin panel and go to Manage»Link (for wordpress 2.5 and later) or Blogroll in wordpress 2.3.x. Click on the edit blogroll link option, now you have the edit-link page, expand the advance tab and you will find an input form for &#8216;Image Address&#8217;. You have to paste the link here. Now save the blogroll link and check your blog or website again, the icon will appear on the right side of the link you have just edited.</p>
<p><strong>The modification:</strong><br />
Now, you have the icon appeared on the blogroll, but there is one simple modification I made on the plugin. In the input form for Image address, the plugin originally accept or allow only the hyperlink like http://www.sitename.com/iconfilename for the icon location. If you upload your icon file in the wp-content directory (/wp-content/icons/), you cannot specify the path of the icon like this (/wp-content/icons/iconfilename.xxx) for the &#8216;Image Address&#8217; using this plugin. So the following modifications have been made. It&#8217;s a simple modification, first find the following lines in the plugin file (zoc_powerblogroll.php).</p>
<pre name="code" class="php">
if (substr($book-&gt;link_image,0,4) == 'http' &amp;&amp; $showLinkFavicon)
echo "&lt;a href=\"" . $book-&gt;link_url . "\"&gt; &lt;img src=\"" . $book-&gt;link_image . "\" alt=\"" . $book-&gt;link_name . " website\" /&gt; &lt;/a&gt;\n";
</pre>
<p>After you find this lines, make the modification as below, or replaced the above lines with the code below or download the modified plugin here.</p>
<pre name="code" class="php">
if (substr($book-&gt;link_image,0,4) == 'http' &amp;&amp; $showLinkFavicon)
echo "&lt;div class=\"blogroll_image\"&gt; &lt;img src=\"" . $book-&gt;link_image . "\" alt=\"" . $book-&gt;link_image." website\" /&gt; &lt;/div&gt;";
elseif ($showLinkFavicon)
echo "&lt;div class=\"blogroll_image\"&gt; &lt;img src=\"" . get_settings('home') . $book-&gt;link_image . "\" alt=\"" . $book-&gt;link_name . " website\" /&gt; &lt;/div&gt;";
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.chromicdesign.com/2008/06/wordpress-blogroll-icon.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

