<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for octalforty</title>
	<atom:link href="http://octalforty.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://octalforty.com</link>
	<description>user interface, user experience &#38; web standards.</description>
	<lastBuildDate>Mon, 05 Mar 2012 13:45:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Creating A WordPress Tag Index Page by Yassir Yahya</title>
		<link>/articles/creating-a-wordpress-tag-index-page/#comment-2045</link>
		<dc:creator>Yassir Yahya</dc:creator>
		<pubDate>Mon, 05 Mar 2012 13:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=280#comment-2045</guid>
		<description>@&lt;a href=&quot;#comment-2044&quot; rel=&quot;nofollow&quot;&gt;Adriana&lt;/a&gt;: 

Hey Adriana! Thanks for dropping by :)

To hide characters without tags, simply wrap the &lt;code&gt;if ($tags)&lt;/code&gt; around the lines where you output the markup.  Something like this :

&lt;code&gt;
$tags = get_tags( array(&#039;name__like&#039; =&gt; $character, &#039;order&#039; =&gt; &#039;ASC&#039;) );
if ($tags) {
	if ($index != 0 &amp;&amp; $index % 4 == 0)  {
		$html = &quot;&lt;div class=&#039;post-tags clearfix&#039; style=&#039;clear:left;&#039;&gt;&quot;;
	} else {
		$html = &quot;&lt;div class=&#039;post-tags clearfix&#039;&gt;&quot;;
	}
	$html .= &quot;&lt;h3 class=&#039;title&#039;&gt;{$character}&lt;/h3&gt;&quot;;
	$html .= &quot;&lt;ul&gt;&quot;;
	foreach ( (array) $tags as $tag ) {
		$tag_link = get_tag_link($tag-&gt;term_id);
		$html .= &quot;&lt;li class=&#039;tag-item&#039;&gt;&quot;;
		if ( $tag-&gt;count &gt; 1 ) {
		$html .= &quot;&lt;p&gt;&lt;a href=&#039;{$tag_link}&#039; title=&#039;View all {$tag-&gt;count} articles with the tag of {$tag-&gt;name}&#039; class=&#039;{$tag-&gt;slug}&#039;&gt;&quot;;
		} else {
		$html .= &quot;&lt;p&gt;&lt;a href=&#039;{$tag_link}&#039; title=&#039;View the article tagged {$tag-&gt;name}&#039; class=&#039;{$tag-&gt;slug}&#039;&gt;&quot;;
		}
		$html .= &quot;{$tag-&gt;name}&lt;/a&gt;&lt;span&gt;#{$tag-&gt;count}&lt;/span&gt;&lt;/p&gt;&quot;;
		$html .= &quot;&lt;/li&gt;&quot;;
	}
	$html .= &#039;&lt;/ul&gt;&#039;;
	$html .= &#039;&lt;/div&gt;&#039;;
}
echo $html;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-2044" rel="nofollow">Adriana</a>: </p>
<p>Hey Adriana! Thanks for dropping by :)</p>
<p>To hide characters without tags, simply wrap the <code>if ($tags)</code> around the lines where you output the markup.  Something like this :</p>
<pre><code>$tags = get_tags( array('name__like' =&gt; $character, 'order' =&gt; 'ASC') );
if ($tags) {
	if ($index != 0 &amp;&amp; $index % 4 == 0)  {
		$html = "&lt;div class='post-tags clearfix' style='clear:left;'&gt;";
	} else {
		$html = "&lt;div class='post-tags clearfix'&gt;";
	}
	$html .= "&lt;h3 class='title'&gt;{$character}&lt;/h3&gt;";
	$html .= "&lt;ul&gt;";
	foreach ( (array) $tags as $tag ) {
		$tag_link = get_tag_link($tag-&gt;term_id);
		$html .= "&lt;li class='tag-item'&gt;";
		if ( $tag-&gt;count &gt; 1 ) {
		$html .= "&lt;p&gt;&lt;a href='{$tag_link}' title='View all {$tag-&gt;count} articles with the tag of {$tag-&gt;name}' class='{$tag-&gt;slug}'&gt;";
		} else {
		$html .= "&lt;p&gt;&lt;a href='{$tag_link}' title='View the article tagged {$tag-&gt;name}' class='{$tag-&gt;slug}'&gt;";
		}
		$html .= "{$tag-&gt;name}&lt;/a&gt;&lt;span&gt;#{$tag-&gt;count}&lt;/span&gt;&lt;/p&gt;";
		$html .= "&lt;/li&gt;";
	}
	$html .= '&lt;/ul&gt;';
	$html .= '&lt;/div&gt;';
}
echo $html;</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating A WordPress Tag Index Page by Adriana</title>
		<link>/articles/creating-a-wordpress-tag-index-page/#comment-2044</link>
		<dc:creator>Adriana</dc:creator>
		<pubDate>Sun, 04 Mar 2012 17:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=280#comment-2044</guid>
		<description>Hi, I have a question :)

What if I want to hide the chars without tags?

Thanks, 

A.</description>
		<content:encoded><![CDATA[<p>Hi, I have a question :)</p>
<p>What if I want to hide the chars without tags?</p>
<p>Thanks, </p>
<p>A.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating A WordPress Tag Index Page by Adriana</title>
		<link>/articles/creating-a-wordpress-tag-index-page/#comment-2041</link>
		<dc:creator>Adriana</dc:creator>
		<pubDate>Mon, 27 Feb 2012 15:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=280#comment-2041</guid>
		<description>Hi Yassir, thanks for the post, is there a way to get the related tags (by id or slug) to each tag as here: http://032c.com/topics/ 

Please email me so i&#039;ll explain better.</description>
		<content:encoded><![CDATA[<p>Hi Yassir, thanks for the post, is there a way to get the related tags (by id or slug) to each tag as here: <a href="http://032c.com/topics/" rel="nofollow">http://032c.com/topics/</a> </p>
<p>Please email me so i’ll explain better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning Role On WordPress Registration Page by mohammad</title>
		<link>/articles/assigning-role-on-wordpress-registration-page/#comment-2021</link>
		<dc:creator>mohammad</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.octalforty.com/?p=102#comment-2021</guid>
		<description>wow! very nice plugin
thakns to share with us 
cheers ;)</description>
		<content:encoded><![CDATA[<p>wow! very nice plugin<br />
thakns to share with us<br />
cheers ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating A WordPress Tag Index Page by Yassir Yahya</title>
		<link>/articles/creating-a-wordpress-tag-index-page/#comment-2006</link>
		<dc:creator>Yassir Yahya</dc:creator>
		<pubDate>Tue, 24 Jan 2012 14:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=280#comment-2006</guid>
		<description>@&lt;a href=&quot;#comment-2005&quot; rel=&quot;nofollow&quot;&gt;Siddharth Arun&lt;/a&gt;:  Thanks :)
To get tags from a particular category (or categories), you could probably use &lt;a href=&quot;http://wordpress.org/support/topic/get-tags-specific-to-category#post-1238530&quot; title=&quot;Get Tags specific to Category&quot; rel=&quot;nofollow&quot;&gt;this nifty function&lt;/a&gt; from WP forum.

Hope that helps!</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-2005" rel="nofollow">Siddharth Arun</a>:  Thanks :)<br />
To get tags from a particular category (or categories), you could probably use <a href="http://wordpress.org/support/topic/get-tags-specific-to-category#post-1238530" title="Get Tags specific to Category" rel="nofollow">this nifty function</a> from WP forum.</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating A WordPress Tag Index Page by Siddharth Arun</title>
		<link>/articles/creating-a-wordpress-tag-index-page/#comment-2005</link>
		<dc:creator>Siddharth Arun</dc:creator>
		<pubDate>Sat, 21 Jan 2012 06:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=280#comment-2005</guid>
		<description>Hey! Nice one...

Is there any way I can modify this to fetch tags from a particular category or custom post type? 

Thanks!</description>
		<content:encoded><![CDATA[<p>Hey! Nice one…</p>
<p>Is there any way I can modify this to fetch tags from a particular category or custom post type? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning Role On WordPress Registration Page by Galo</title>
		<link>/articles/assigning-role-on-wordpress-registration-page/#comment-2004</link>
		<dc:creator>Galo</dc:creator>
		<pubDate>Wed, 18 Jan 2012 16:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.octalforty.com/?p=102#comment-2004</guid>
		<description>I tried your code with Cimy User Extra Field, but it still registers user as Subscriber as default.

the code was added on top of the functions.php

I&#039;m using wordpress 3.3.1</description>
		<content:encoded><![CDATA[<p>I tried your code with Cimy User Extra Field, but it still registers user as Subscriber as default.</p>
<p>the code was added on top of the functions.php</p>
<p>I’m using wordpress 3.3.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning Role On WordPress Registration Page by Yassir Yahya</title>
		<link>/articles/assigning-role-on-wordpress-registration-page/#comment-1779</link>
		<dc:creator>Yassir Yahya</dc:creator>
		<pubDate>Fri, 25 Nov 2011 18:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.octalforty.com/?p=102#comment-1779</guid>
		<description>Hi Nahum. I&#039;ve written a new post on how to achieve this. Take a look and don&#039;t forget to drop some comments on what you think! :)</description>
		<content:encoded><![CDATA[<p>Hi Nahum. I’ve written a new post on how to achieve this. Take a look and don’t forget to drop some comments on what you think! :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning Role On WordPress Registration &amp; Profile Page by Assigning Role On Wordpress Registration Page &#124; octalforty</title>
		<link>/articles/assigning-role-on-wordpress-registration-profile-page/#comment-1776</link>
		<dc:creator>Assigning Role On Wordpress Registration Page &#124; octalforty</dc:creator>
		<pubDate>Thu, 24 Nov 2011 17:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://octalforty.com/?p=395#comment-1776</guid>
		<description>[...] Update! There’s a newer post has been published as a follow-up to this post.  Read Assigning Role On WordPress Registration &amp; Profile Page [...]</description>
		<content:encoded><![CDATA[<p>[…] Update! There’s a newer post has been published as a follow-up to this post.  Read Assigning Role On WordPress Registration &amp; Profile Page […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assigning Role On WordPress Registration Page by Assigning Role On Wordpress Registration &#38; Profile Page &#124; octalforty</title>
		<link>/articles/assigning-role-on-wordpress-registration-page/#comment-1774</link>
		<dc:creator>Assigning Role On Wordpress Registration &#38; Profile Page &#124; octalforty</dc:creator>
		<pubDate>Thu, 24 Nov 2011 16:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.octalforty.com/?p=102#comment-1774</guid>
		<description>[...] I didn’t expect that the previous article, Assigning Role On WordPress Registration Page gained so much attention. This might be a little late for a follow up, but better late than [...]</description>
		<content:encoded><![CDATA[<p>[…] I didn’t expect that the previous article, Assigning Role On WordPress Registration Page gained so much attention. This might be a little late for a follow up, but better late than […]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Database Caching using disk: basic
Object Caching 674/674 objects using disk: basic

Served from: octalforty.com @ 2012-05-20 12:27:20 -->
