<?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 Oscar Dias - Personal Blog</title>
	<atom:link href="http://oscardias.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://oscardias.com</link>
	<description>Software Development and Related Topics</description>
	<lastBuildDate>Wed, 16 May 2012 19:35:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by Oscar Dias</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-64606</link>
		<dc:creator>Oscar Dias</dc:creator>
		<pubDate>Wed, 16 May 2012 19:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-64606</guid>
		<description>That&#039;s awesome! Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>That&#8217;s awesome! Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by Ben Rich</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-64565</link>
		<dc:creator>Ben Rich</dc:creator>
		<pubDate>Wed, 16 May 2012 13:32:47 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-64565</guid>
		<description>correction.

fmod($rating, 5) should be fmod($rating, 1)</description>
		<content:encoded><![CDATA[<p>correction.</p>
<p>fmod($rating, 5) should be fmod($rating, 1)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by Ben Rich</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-64563</link>
		<dc:creator>Ben Rich</dc:creator>
		<pubDate>Wed, 16 May 2012 13:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-64563</guid>
		<description>I also needed 0.5 stars. I&#039;ve edited the various functions etc to suit my needs.. I changed a lot of the code so you&#039;ll need to edit it for your needs.  The logic though should help or at the least give you inspiration (sorry for length of comment)

function show_rating($rating) {
	switch ($rating) {
		case &#039;0.5&#039;:
		    $alt = &#039;Really bad - 0.5 stars&#039;;
		    break;
		case &#039;1&#039;:
		    $alt = &#039;Really bad - 1 star&#039;;
		    break;
		case &#039;1.5&#039;:
		    $alt = &#039;Bad - 1.5 stars&#039;;
		    break;
		case &#039;2&#039;:
		    $alt = &#039;Bad - 2 stars&#039;;
		    break;
		case &#039;2.5&#039;:
		    $alt = &#039;Good - 2.5 stars&#039;;
		    break;
		case &#039;3&#039;:
		    $alt = &#039;Good - 3 stars&#039;;
		    break;
		case &#039;3.5&#039;:
		    $alt = &#039;Very good - 3.5 stars&#039;;
		    break;
		case &#039;4&#039;:
		    $alt = &#039;Very good - 4 stars&#039;;
		    break;
		case &#039;4.5&#039;:
		    $alt = &#039;Excellent - 4.5 stars&#039;;
		    break;
		case &#039;5&#039;:
		    $alt = &#039;Excellent - 5 stars&#039;;
		    break;
		default:
		    $alt = &#039;No grade&#039;;
		    break;
	}
	
	if (!isset($rating) &#124;&#124; $rating == &#039;&#039;)
	    echo $alt;
	else {
		$full = floor($rating);
		$remainder = fmod($rating, 5);
		$empty = 5 - $full;
		for ($i = 0; $i &lt; $full; $i++) {
			echo &#039;&#039;;
		}
		if($remainder == 0.5) {
			echo &#039;&#039;;
		}
		for ($i = 0; $i &lt; $empty; $i++) {
			echo &#039;&#039;;
		}
	}
}

function get_average_ratings($id) {
    $comment_array = get_approved_comments($id);
    $count = 1;
 
    if ($comment_array) {
        $i = 0;
        $total = 0;
        foreach($comment_array as $comment){
            $rating = get_comment_meta($comment-&gt;comment_ID, &#039;rating&#039;);
            if(isset($rating[0]) &amp;&amp; $rating[0] !== &#039;&#039;) {
                $i++;
                $total += $rating[0];
            }
        }
 
        if($i == 0)
            return false;
        else
            return round_to_half($total/$i);
    } else {
        return false;
    }
}

function round_to_half($num) {
	if($num &gt;= ($half = ($ceil = ceil($num))- 0.5) + 0.25) return $ceil;
	else if($num &lt; $half - 0.25) return floor($num);
	else return $half;
}

HTML...


    &lt;!-- &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;zero-star&quot; onclick=&quot;rateClick(0); return false;&quot;&gt;0&lt;/a&gt; --&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-05&quot; rel=&quot;0.5&quot; onclick=&quot;rateClick(0.5); return false;&quot;&gt;0.5&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-10&quot; rel=&quot;1.0&quot; onclick=&quot;rateClick(1); return false;&quot;&gt;1&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-15&quot; rel=&quot;1.5&quot; onclick=&quot;rateClick(1.5); return false;&quot;&gt;1.5&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-20&quot; rel=&quot;2.0&quot; onclick=&quot;rateClick(2); return false;&quot;&gt;2&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-25&quot; rel=&quot;2.5&quot; onclick=&quot;rateClick(2.5); return false;&quot;&gt;2.5&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-30&quot; rel=&quot;3.0&quot; onclick=&quot;rateClick(3); return false;&quot;&gt;3&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-35&quot; rel=&quot;3.5&quot; onclick=&quot;rateClick(3.5); return false;&quot;&gt;3.5&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-40&quot; rel=&quot;4.0&quot; onclick=&quot;rateClick(4); return false;&quot;&gt;4&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-45&quot; rel=&quot;4.5&quot; onclick=&quot;rateClick(4.5); return false;&quot;&gt;4.5&lt;/a&gt;
    &lt;a href=&quot;#&quot; title=&quot;&quot; class=&quot;star-50&quot; rel=&quot;5.0&quot; onclick=&quot;rateClick(5); return false;&quot;&gt;5&lt;/a&gt;



notice with #rating-hover-score. I&#039;ve got one of those &#039;3 out of 5&#039; things that change as you hover.  Javascript for that...

jQuery(document).ready(function($){
	$(&#039;.star-rating a&#039;).each(function(){
		var value = $(this).attr(&#039;rel&#039;);
		$(this).hover(function(){
			$(&#039;#rating-hover-score&#039;).html(value + &#039; out of 5&#039;);
		});
	});
	
	$(&#039;.star-rating&#039;).mouseleave(function(){
		$(&#039;#rating-hover-score&#039;).html(&#039;&#039;);
	});
});

I also changed the clearSelected() function.

function clearSelected() {
    $(&#039;.star-rating a&#039;).removeClass(&#039;current-rating&#039;);
}

You&#039;ll also need to change the rateClick javascript function but it should be obvious what you need to do

Lastly you&#039;ll need to edit the widths in the css. Also have a half star graphic.

span.star { display: block; height: 18px; width: 18px; background-image: url(images/stars.png); float: left; }
span.star_off { background-position: center top; }
span.star_on { background-position: center bottom; }
span.star_half { background-position: center center; }</description>
		<content:encoded><![CDATA[<p>I also needed 0.5 stars. I&#8217;ve edited the various functions etc to suit my needs.. I changed a lot of the code so you&#8217;ll need to edit it for your needs.  The logic though should help or at the least give you inspiration (sorry for length of comment)</p>
<p>function show_rating($rating) {<br />
	switch ($rating) {<br />
		case &#8217;0.5&#8242;:<br />
		    $alt = &#8216;Really bad &#8211; 0.5 stars&#8217;;<br />
		    break;<br />
		case &#8217;1&#8242;:<br />
		    $alt = &#8216;Really bad &#8211; 1 star&#8217;;<br />
		    break;<br />
		case &#8217;1.5&#8242;:<br />
		    $alt = &#8216;Bad &#8211; 1.5 stars&#8217;;<br />
		    break;<br />
		case &#8217;2&#8242;:<br />
		    $alt = &#8216;Bad &#8211; 2 stars&#8217;;<br />
		    break;<br />
		case &#8217;2.5&#8242;:<br />
		    $alt = &#8216;Good &#8211; 2.5 stars&#8217;;<br />
		    break;<br />
		case &#8217;3&#8242;:<br />
		    $alt = &#8216;Good &#8211; 3 stars&#8217;;<br />
		    break;<br />
		case &#8217;3.5&#8242;:<br />
		    $alt = &#8216;Very good &#8211; 3.5 stars&#8217;;<br />
		    break;<br />
		case &#8217;4&#8242;:<br />
		    $alt = &#8216;Very good &#8211; 4 stars&#8217;;<br />
		    break;<br />
		case &#8217;4.5&#8242;:<br />
		    $alt = &#8216;Excellent &#8211; 4.5 stars&#8217;;<br />
		    break;<br />
		case &#8217;5&#8242;:<br />
		    $alt = &#8216;Excellent &#8211; 5 stars&#8217;;<br />
		    break;<br />
		default:<br />
		    $alt = &#8216;No grade&#8217;;<br />
		    break;<br />
	}</p>
<p>	if (!isset($rating) || $rating == &#8221;)<br />
	    echo $alt;<br />
	else {<br />
		$full = floor($rating);<br />
		$remainder = fmod($rating, 5);<br />
		$empty = 5 &#8211; $full;<br />
		for ($i = 0; $i &lt; $full; $i++) {<br />
			echo &#039;&#8217;;<br />
		}<br />
		if($remainder == 0.5) {<br />
			echo &#8221;;<br />
		}<br />
		for ($i = 0; $i &lt; $empty; $i++) {<br />
			echo &#039;&#8217;;<br />
		}<br />
	}<br />
}</p>
<p>function get_average_ratings($id) {<br />
    $comment_array = get_approved_comments($id);<br />
    $count = 1;</p>
<p>    if ($comment_array) {<br />
        $i = 0;<br />
        $total = 0;<br />
        foreach($comment_array as $comment){<br />
            $rating = get_comment_meta($comment-&gt;comment_ID, &#8216;rating&#8217;);<br />
            if(isset($rating[0]) &amp;&amp; $rating[0] !== &#8221;) {<br />
                $i++;<br />
                $total += $rating[0];<br />
            }<br />
        }</p>
<p>        if($i == 0)<br />
            return false;<br />
        else<br />
            return round_to_half($total/$i);<br />
    } else {<br />
        return false;<br />
    }<br />
}</p>
<p>function round_to_half($num) {<br />
	if($num &gt;= ($half = ($ceil = ceil($num))- 0.5) + 0.25) return $ceil;<br />
	else if($num &lt; $half &#8211; 0.25) return floor($num);<br />
	else return $half;<br />
}</p>
<p>HTML&#8230;</p>
<p>    &lt;!&#8211; &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;zero-star&#8221; onclick=&#8221;rateClick(0); return false;&#8221;&gt;0 &#8211;&gt;<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-05&#8243; rel=&#8221;0.5&#8243; onclick=&#8221;rateClick(0.5); return false;&#8221;&gt;0.5<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-10&#8243; rel=&#8221;1.0&#8243; onclick=&#8221;rateClick(1); return false;&#8221;&gt;1<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-15&#8243; rel=&#8221;1.5&#8243; onclick=&#8221;rateClick(1.5); return false;&#8221;&gt;1.5<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-20&#8243; rel=&#8221;2.0&#8243; onclick=&#8221;rateClick(2); return false;&#8221;&gt;2<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-25&#8243; rel=&#8221;2.5&#8243; onclick=&#8221;rateClick(2.5); return false;&#8221;&gt;2.5<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-30&#8243; rel=&#8221;3.0&#8243; onclick=&#8221;rateClick(3); return false;&#8221;&gt;3<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-35&#8243; rel=&#8221;3.5&#8243; onclick=&#8221;rateClick(3.5); return false;&#8221;&gt;3.5<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-40&#8243; rel=&#8221;4.0&#8243; onclick=&#8221;rateClick(4); return false;&#8221;&gt;4<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-45&#8243; rel=&#8221;4.5&#8243; onclick=&#8221;rateClick(4.5); return false;&#8221;&gt;4.5<br />
    &lt;a href=&quot;#&quot; title=&quot;&#8221; class=&#8221;star-50&#8243; rel=&#8221;5.0&#8243; onclick=&#8221;rateClick(5); return false;&#8221;&gt;5</p>
<p>notice with #rating-hover-score. I&#8217;ve got one of those &#8217;3 out of 5&#8242; things that change as you hover.  Javascript for that&#8230;</p>
<p>jQuery(document).ready(function($){<br />
	$(&#8216;.star-rating a&#8217;).each(function(){<br />
		var value = $(this).attr(&#8216;rel&#8217;);<br />
		$(this).hover(function(){<br />
			$(&#8216;#rating-hover-score&#8217;).html(value + &#8216; out of 5&#8242;);<br />
		});<br />
	});</p>
<p>	$(&#8216;.star-rating&#8217;).mouseleave(function(){<br />
		$(&#8216;#rating-hover-score&#8217;).html(&#8221;);<br />
	});<br />
});</p>
<p>I also changed the clearSelected() function.</p>
<p>function clearSelected() {<br />
    $(&#8216;.star-rating a&#8217;).removeClass(&#8216;current-rating&#8217;);<br />
}</p>
<p>You&#8217;ll also need to change the rateClick javascript function but it should be obvious what you need to do</p>
<p>Lastly you&#8217;ll need to edit the widths in the css. Also have a half star graphic.</p>
<p>span.star { display: block; height: 18px; width: 18px; background-image: url(images/stars.png); float: left; }<br />
span.star_off { background-position: center top; }<br />
span.star_on { background-position: center bottom; }<br />
span.star_half { background-position: center center; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by Oscar Dias</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-62479</link>
		<dc:creator>Oscar Dias</dc:creator>
		<pubDate>Fri, 04 May 2012 00:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-62479</guid>
		<description>Well, you need to update the code in different places to support half stars. You need to update the function movie_grade adding the new values into the switch statement and add another if statement for the half star in the for loop (something like &quot;if ($grade &gt; ($i+0.5))&quot;). The next step is to update the ul.star-rating with additional links and classes. These classes need to be created in the CSS as well. Finally, you need to update the JavaScript functions as well to work with your half star (update the switch statement).</description>
		<content:encoded><![CDATA[<p>Well, you need to update the code in different places to support half stars. You need to update the function movie_grade adding the new values into the switch statement and add another if statement for the half star in the for loop (something like &#8220;if ($grade &gt; ($i+0.5))&#8221;). The next step is to update the ul.star-rating with additional links and classes. These classes need to be created in the CSS as well. Finally, you need to update the JavaScript functions as well to work with your half star (update the switch statement).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by tantan</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-62419</link>
		<dc:creator>tantan</dc:creator>
		<pubDate>Thu, 03 May 2012 18:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-62419</guid>
		<description>How to make half star rating. e.g. : 2.5 stars, 3.5 stars, etc? Thanks before :)</description>
		<content:encoded><![CDATA[<p>How to make half star rating. e.g. : 2.5 stars, 3.5 stars, etc? Thanks before <img src='http://oscardias.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a WordPress Theme (Part 3): Header by Rss Submit</title>
		<link>http://oscardias.com/development/php/wordpress/creating-a-wordpress-theme-part-3-header/comment-page-1/#comment-57336</link>
		<dc:creator>Rss Submit</dc:creator>
		<pubDate>Mon, 02 Apr 2012 03:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=55#comment-57336</guid>
		<description>&lt;strong&gt;Rss Submit...&lt;/strong&gt;

[...]Creating a WordPress Theme (Part 3): Header &#124; Oscar Dias - Personal Blog[...]...</description>
		<content:encoded><![CDATA[<p><strong>Rss Submit&#8230;</strong></p>
<p>[...]Creating a WordPress Theme (Part 3): Header | Oscar Dias &#8211; Personal Blog[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integrating WordPress with CodeIgniter by Peter Drinnan</title>
		<link>http://oscardias.com/development/php/codeigniter/integrating-wordpress-with-codeigniter/comment-page-1/#comment-54729</link>
		<dc:creator>Peter Drinnan</dc:creator>
		<pubDate>Sun, 18 Mar 2012 08:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=178#comment-54729</guid>
		<description>Great article. I am using CodeIgniter to launch Wordpress as a desktop version of my site. I am using CodeIgniter for my mobile version.

As the site I worked on is unilingual, it used the qtranslate plugin. That messed up the CI routing so here is a quick fix:

public function __construct() {
    global $table_prefix, $wp_embed, $wp_widget_factory, $_wp_deprecated_widgets_callbacks, $wp_locale, $wp_rewrite;
    // Additional WordPress global variables
    //$wpdb, $current_user, $auth_secure_cookie, $wp_roles, $wp_the_query, $wp_query, $wp, $_updated_user_settings,
    //$wp_taxonomies, $wp_filter, $wp_actions, $merged_filters, $wp_current_filter, $wp_registered_sidebars,
    //$wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks,
    //$posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_version, $id, $comment, $user_ID;

    $request_uri = $_SERVER[&#039;REQUEST_URI&#039;];
 
    require_once &#039;../wp-load.php&#039;;

    // restore the normal REQUEST_URI 
    $_SERVER[&#039;REQUEST_URI&#039;] = $request_uri ;

}


Here is a  function I am using in my main controller for non mobile users to launch the desktop WP version of the site.



/**
* This is a wordpress hack.
*
*/
private function loadwordpress(){
	
	// these variables need to re re-globalized.
	global $post, $q_config, $wp;
	global $wp_rewrite, $wp_query, $wp_the_query;

	define(&#039;WP_USE_THEMES&#039;, true);

	/** Loads the WordPress Environment and Template */
	require(&#039;./wp-blog-header.php&#039;);

	
}</description>
		<content:encoded><![CDATA[<p>Great article. I am using CodeIgniter to launch WordPress as a desktop version of my site. I am using CodeIgniter for my mobile version.</p>
<p>As the site I worked on is unilingual, it used the qtranslate plugin. That messed up the CI routing so here is a quick fix:</p>
<p>public function __construct() {<br />
    global $table_prefix, $wp_embed, $wp_widget_factory, $_wp_deprecated_widgets_callbacks, $wp_locale, $wp_rewrite;<br />
    // Additional WordPress global variables<br />
    //$wpdb, $current_user, $auth_secure_cookie, $wp_roles, $wp_the_query, $wp_query, $wp, $_updated_user_settings,<br />
    //$wp_taxonomies, $wp_filter, $wp_actions, $merged_filters, $wp_current_filter, $wp_registered_sidebars,<br />
    //$wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks,<br />
    //$posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_version, $id, $comment, $user_ID;</p>
<p>    $request_uri = $_SERVER['REQUEST_URI'];</p>
<p>    require_once &#8216;../wp-load.php&#8217;;</p>
<p>    // restore the normal REQUEST_URI<br />
    $_SERVER['REQUEST_URI'] = $request_uri ;</p>
<p>}</p>
<p>Here is a  function I am using in my main controller for non mobile users to launch the desktop WP version of the site.</p>
<p>/**<br />
* This is a wordpress hack.<br />
*<br />
*/<br />
private function loadwordpress(){</p>
<p>	// these variables need to re re-globalized.<br />
	global $post, $q_config, $wp;<br />
	global $wp_rewrite, $wp_query, $wp_the_query;</p>
<p>	define(&#8216;WP_USE_THEMES&#8217;, true);</p>
<p>	/** Loads the WordPress Environment and Template */<br />
	require(&#8216;./wp-blog-header.php&#8217;);</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a WordPress Theme (Part 3): Header by the david aronson</title>
		<link>http://oscardias.com/development/php/wordpress/creating-a-wordpress-theme-part-3-header/comment-page-1/#comment-52696</link>
		<dc:creator>the david aronson</dc:creator>
		<pubDate>Wed, 07 Mar 2012 17:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=55#comment-52696</guid>
		<description>&lt;strong&gt;the david aronson...&lt;/strong&gt;

[...]Creating a WordPress Theme (Part 3): Header &#124; Oscar Dias - Personal Blog[...]...</description>
		<content:encoded><![CDATA[<p><strong>the david aronson&#8230;</strong></p>
<p>[...]Creating a WordPress Theme (Part 3): Header | Oscar Dias &#8211; Personal Blog[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by alovilla</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-30843</link>
		<dc:creator>alovilla</dc:creator>
		<pubDate>Fri, 07 Oct 2011 15:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-30843</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Rate Field to WordPress Comments by sol</title>
		<link>http://oscardias.com/development/php/wordpress/how-to-add-a-rate-field-to-wordpress-comments/comment-page-1/#comment-30801</link>
		<dc:creator>sol</dc:creator>
		<pubDate>Fri, 07 Oct 2011 00:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://oscardias.com/?p=160#comment-30801</guid>
		<description>Holla friends.

Version 2 of my WP Extra Comment Fields plugin is now available.
http://www.solaceten.info/wp-extra-comment-fields-v2

Now fully automated installation and compliant with WP standards :-)

You can add extra comment fields automatically using the plugin,

- make them public or private
- and make them mandatory or not
- receive them in email admin notification
- Use radio, text fields or dropdowns!

Lots of options :-)
Lots of additional features planned :-)

http://www.solaceten.info/wp-extra-comment-fields-v2

Regards
Sol</description>
		<content:encoded><![CDATA[<p>Holla friends.</p>
<p>Version 2 of my WP Extra Comment Fields plugin is now available.<br />
<a href="http://www.solaceten.info/wp-extra-comment-fields-v2" rel="nofollow">http://www.solaceten.info/wp-extra-comment-fields-v2</a></p>
<p>Now fully automated installation and compliant with WP standards <img src='http://oscardias.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>You can add extra comment fields automatically using the plugin,</p>
<p>- make them public or private<br />
- and make them mandatory or not<br />
- receive them in email admin notification<br />
- Use radio, text fields or dropdowns!</p>
<p>Lots of options <img src='http://oscardias.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Lots of additional features planned <img src='http://oscardias.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.solaceten.info/wp-extra-comment-fields-v2" rel="nofollow">http://www.solaceten.info/wp-extra-comment-fields-v2</a></p>
<p>Regards<br />
Sol</p>
]]></content:encoded>
	</item>
</channel>
</rss>

