<?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>Amor&#039;s Personal Website &#187; WordPress</title>
	<atom:link href="http://www.amorfrancis.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.amorfrancis.com</link>
	<description>My little place in cyberspace</description>
	<lastBuildDate>Thu, 02 Sep 2010 16:53:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Move a WordPress Comment to Another Post</title>
		<link>http://www.amorfrancis.com/move-wordpress-comment.php</link>
		<comments>http://www.amorfrancis.com/move-wordpress-comment.php#comments</comments>
		<pubDate>Tue, 10 Aug 2010 07:24:47 +0000</pubDate>
		<dc:creator>Amor</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHPMyAdmin]]></category>

		<guid isPermaLink="false">http://www.amorfrancis.com/?p=3235</guid>
		<description><![CDATA[There have been several instances when my visitors comment on the wrong post, but I don&#8217;t blame them. Maybe it&#8217;s because of my note in the comment section that says &#8220;For non-post related comment, please visit my Guestbook&#8221;. But sometimes those comments meant for other posts like &#8220;Attic Cat Jung da Bin&#8221; and other 3-year-old ]]></description>
			<content:encoded><![CDATA[<p>There have been several instances when my visitors comment on the wrong post, but I don&#8217;t blame them. Maybe it&#8217;s because of my note in the comment section that says &#8220;For non-post related comment, please visit my Guestbook&#8221;. But sometimes those comments meant for other posts like &#8220;Attic Cat Jung da Bin&#8221; and other 3-year-old posts are &#8220;misplaced&#8221; in the Guestbook page.</p>
<p>Finding a way to move the comments to their &#8220;rightful owner&#8221; or to the right post, I found a useful  <a href="http://www.deluxeblogtips.com/2010/05/wordpress-tip-move-comment.html"><strong>WordPress Tip: Move A Comment From A Post To Another</strong></a> article from <strong><a href="http://www.deluxeblogtips.com/">Deluxe Blog Tips</a>.</strong></p>
<h2>Requirements</h2>
<p>To be able to move the comments you need to know these 3 things first:</p>
<ul>
<li><strong>comment&#8217;s ID </strong>-  the ID of the comment you want to transfer</li>
<li><strong>source post&#8217;s ID </strong>- the ID of the post where the comment will be removed</li>
<li><strong>destination post&#8217;s ID</strong> &#8211; the ID of the post where the comment will be moved/transferred</li>
</ul>
<p>To know the <strong>comment&#8217;s ID</strong> and the <strong>source post&#8217;s ID</strong>, go to the <strong>Edit Comments Page</strong> in your Admin Area and hover the mouse on the Approve/Unapproved link in the comments column. You will see the URL in the status bar. However if you&#8217;re using Chrome like me, you may not be able to see the full URL, so just right-click and copy the link address and paste it somewhere else, in a blank tab, notepad, etc.</p>
<p><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/comment-id-link1.png"><img class="alignnone" title="comment-id-link" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/comment-id-link1.png" alt="comment ID and source post ID's link" width="420" height="258" /></a></p>
<p>You will see a link similar to this:</p>
<p><em>http://www.yourdomain.com/wp-admin/comment.php?action=unapprovecomment&#038;amp<strong>;p=171</strong>&amp;<strong>c=12525</strong>&amp;_wpnonce=01bb47e1ad</em></p>
<p>The comment&#8217;s ID is 12525 and the source post&#8217;s ID is 17, as indicated in p=171 and c=12525.</p>
<p>To know the<strong> destination post&#8217;s ID</strong>, go to the <strong>Edit Posts </strong>Page and move the mouse over the <strong>Post Title</strong>. You will see the URL in the status bar that is similar to this link:</p>
<p><em>http://www.yourdomain.com/wp-admin/post.php?action=edit&amp;<strong>post=15</strong></em></p>
<p>Now we know that the destination post&#8217;s ID is 15, as seen from post=15.</p>
<h2>Moving the comment using SQL</h2>
<h4 style="background: none; margin-top: 10px; font-weight: bold;">&#8220;I like to move it move it&#8221;</h4>
<p>To move the comments you have to login to your site&#8217;s Control Panel and go to <strong>PHPMyAdmin</strong> to work with <strong>MySQL</strong> query. Although this is an <strong>easy</strong> task,  <strong>use phpMyAdmin at your own risk</strong>. Be sure to backup your database too, to be on the safe side. <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Choose your WordPress database, and click on the SQL tab.</p>
<p>Now, we&#8217;re going to use these SQL snippets</p>
<pre>UPDATE wp_comments SET comment_post_ID=<strong>destination's post ID</strong> WHERE comment_ID=<strong>comment's ID</strong>;
UPDATE wp_posts SET comment_count=comment_count+1 WHERE ID=<strong>destination's post ID</strong>;
UPDATE wp_posts SET comment_count=comment_count-1 WHERE ID=<strong>source post's ID</strong>;</pre>
<p><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/sql-query-move-comment.jpg"><img class="size-medium wp-image-3236 alignnone" title="sql-query-move-comment" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/sql-query-move-comment-300x80.jpg" alt="move comment to different post" width="300" height="80" /></a></p>
<p>Type the following queries in the SQL tab and press Go, but <strong>be sure to replace it with your own comment and post IDs</strong>.</p>
<pre>UPDATE wp_comments SET comment_post_ID=15 WHERE comment_ID=12570;
UPDATE wp_posts SET comment_count=comment_count+1 WHERE ID=15;
UPDATE wp_posts SET comment_count=comment_count-1 WHERE ID=171;</pre>
<p>WordPress will not automatically fix the comment count that&#8217;s why we have to add 1 to the destination post and delete one from the source post.</p>
<p>If your WordPress Database Table prefix  is not wp_,  (such as  <code>wp_comments</code> and <code>wp_posts), replace wp_ with the prefix you're using.</code></p>
<p>If you did as instructed above, you will see this message:</p>
<p><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/sql-query-move-success.jpg"><img class="alignnone size-full wp-image-3237" title="sql-query-move-success" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/sql-query-move-success.jpg" alt="Your SQL query has been executed successfully" width="368" height="51" /></a></p>
<p>Refresh the Comments Page and you will see that the comment has been moved to the other post.</p>
<p><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/comment-transferred.png"><img class="alignnone size-full wp-image-3244" title="comment-transferred" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/08/comment-transferred.png" alt="comment transferred to another post" width="420" height="164" /></a></p>
<p>I try not to use plugin if I can do it myself, but for those who prefer to use a plugin you can use</p>
<p><a href="http://wordpress.org/extend/plugins/move-wordpress-comments/">Move WordPress Comments Plugin</a><br />
Author:<a href="http://wordpress.org/extend/plugins/profile/nkuttler">Nicolas Kuttler</a><br />
This plugin allows you to move comments  to a different page and to fix comment threading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amorfrancis.com/move-wordpress-comment.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Thelonious Officially Released</title>
		<link>http://www.amorfrancis.com/wordpress-3-thelonious.php</link>
		<comments>http://www.amorfrancis.com/wordpress-3-thelonious.php#comments</comments>
		<pubDate>Thu, 17 Jun 2010 18:18:02 +0000</pubDate>
		<dc:creator>Amor</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Upgrade]]></category>

		<guid isPermaLink="false">http://www.amorfrancis.com/?p=3134</guid>
		<description><![CDATA[The much awaited WordPress 3.0 “Thelonious” is officially released.  It is named after Thelonious Sphere Monk, an American jazz pianist and composer considered as one of the giants of American music. It's now available for download or you can upgrade within your dashboard]]></description>
			<content:encoded><![CDATA[<p>The much awaited <strong>WordPress 3.0 “Thelonious” </strong> is officially released.  It is named after Thelonious Sphere Monk, an American jazz pianist and composer considered as one of the giants of American music. It&#8217;s now available for <strong><a href="http://wordpress.org/download/">download</a></strong> or you can upgrade within your dashboard.</p>
<p>I’ve been testing WordPress 3.0 since Beta 2  in my local WordPress install. Last week I upgraded to RC3 and now, the final release. It&#8217;s worth the wait! Kudos to all the <strong><a href="http://wordpress.org/development/2010/06/thelonious/" target="_blank">218 developers</a></strong> who contributed to the 3.0 release cycle.</p>
<p>What&#8217;s funny was, when I was beta-testing WP 3.0, and typed the wrong password, something <strong>strange</strong> happened to the login form. Go try it out! <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>There are plenty of <strong>New Features</strong> in WordPress 3.0 making it even more powerful.  <em>Some </em>of those I like are:</p>
<ul>
<li><strong>Twenty Ten</strong> – new default well built theme that takes full advantage of the current features of WordPress. It&#8217;s packed with cool features, clean typography and strong focus on SEO.
<p><div class="wp-caption alignnone" style="width: 430px"><img class="  " src="http://www.seanfranciskeith.com/wp-content/uploads/2010/05/wp-twenty-ten.jpg" alt="Testing WP 3.0 Twenty Ten" width="420" height="264" /><p class="wp-caption-text">Testing Twenty Ten 1.0 WP theme</p></div></li>
<li><strong>Multisite</strong> – run multiple sites within one single install.</li>
<li><strong>New Custom Menu Management</strong> – makes it easy to create and manage multiple menus combining posts, pages, categories, tags, and links for use in theme  menus or widgets.</li>
<li><strong>Custom Header and Background Support</strong> – add custom background in a theme</li>
<li><strong>Bulk Updates for Themes and Plugins</strong> – big time saver</li>
<li><strong>Custom Post Types and Custom Taxonomies</strong></li>
</ul>
<p>Check out <a href="http://codex.wordpress.org/Version_3.0"><strong>WordPress 3.0’s Codex  page</strong></a> for a more comprehensive look on WP 3.0</p>
<p>Take a look at the <strong>WordPress 3.0 Video Tour</strong></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=BQtfIEY1&amp;amp;amp;amp;width=640&amp;amp;amp;amp;height=360&amp;amp;amp;amp;locksize=no&amp;amp;amp;amp;dynamicseek=false&amp;amp;amp;amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" allowfullscreen="true" wmode="transparent" flashvars="guid=BQtfIEY1&amp;amp;amp;amp;width=640&amp;amp;amp;amp;height=360&amp;amp;amp;amp;locksize=no&amp;amp;amp;amp;dynamicseek=false&amp;amp;amp;amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>
<p>What are you waiting for? Upgrade now. Just don&#8217;t forget to <strong>backup</strong> your database and download a copy of all your files first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amorfrancis.com/wordpress-3-thelonious.php/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>12 Premium WordPress Themes for Free</title>
		<link>http://www.amorfrancis.com/freepremium-wordpress-themes.php</link>
		<comments>http://www.amorfrancis.com/freepremium-wordpress-themes.php#comments</comments>
		<pubDate>Thu, 03 Jun 2010 23:45:22 +0000</pubDate>
		<dc:creator>Amor</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Premium WordPress Themes]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.amorfrancis.com/?p=3066</guid>
		<description><![CDATA[Interested to download 12 Premium WordPress Themes for Free? Why not? I just did! I downloaded it all and it saved me $467.00. Imagine that! I read this info from Themelab and I just can&#8217;t let it pass. Even if I&#8217;m sleepy already, I just have to visit the site and download it asap, because ]]></description>
			<content:encoded><![CDATA[<p>Interested to download <strong>12 Premium WordPress Themes for Free</strong>? Why not? I just did! I downloaded it all and it saved me $467.00. Imagine that!</p>
<p>I read this info from<strong> </strong><a href="http://www.themelab.com/2010/06/03/free-richwp-wordpress-themes-limited-time/"><strong>Themelab</strong></a> and I just can&#8217;t let it pass. Even if I&#8217;m sleepy already, I just have to visit the site and download it asap, because this will be available for a limited time only!</p>
<p><strong>Felix</strong>, the owner of <a href="http://richwp.com"><strong>RichWP.com</strong></a> is giving away ALL full versions of his paid WordPress themes. Free. Gratis. Libre. No strings attached. You only have to sign up with your name and email address in the opt-in form; confirm your email and download links will be sent. Just as simple as that.</p>
<p><strong>The Themes</strong></p>
<p>Here are two of the themes that I downloaded.</p>
<p><a href="http://richwp.com/preview/rich-superblogger/" target="_blank"><img class="size-medium wp-image-3068" style="border: 1px solid #ccc;" title="rich-superblogger" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/06/rich-superblogger.png" alt="Free Super Blogger WP Theme" width="420" height="225" /></a><br />
<strong><a href="http://richwp.com/preview/rich-superblogger/" target="_blank"></a></strong></p>
<p><strong><a href="http://richwp.com/preview/rich-superblogger/" target="_blank">Superblogger</a> </strong>- a mix between a blog and a magazine, easy to setup .</p>
<p><a href="http://richwp.com/preview/rich-dailymagazine/" target="_blank"><img class="alignnone size-medium wp-image-3069" style="border: 1px solid #ccc;" title="rich-dailymagazine" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/06/rich-dailymagazine.png" alt="Free Daily News WP Theme" width="420" height="225" /></a></p>
<p><a href="http://richwp.com/preview/rich-dailymagazine/" target="_blank"><strong>Daily  News</strong></a> &#8211; fast and easy to get started. Blog and get rich.</p>
<p>I signed up and downloaded the 12 themes. I love to download themes because by looking at the source codes, I learn a thing or two, or three or four hehehe! It&#8217;s a good source of inspiration for new projects, etc. <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  It&#8217;s not everyday that you  get access to paid themes without spending a single dime! Or, in my case, a single centavo, <em>kahit singkong duling pa</em>. <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Wondering why Felix is  giving it all for free? He cited four reasons, and you can read it on his site. He also said:</p>
<blockquote><p>&#8220;This is the <strong>BOLDEST Marketing Move</strong> in the history of  the Premium WordPress Theme Market. I am really proud of my work and I  want <strong>YOU</strong> to use it. This one is for you. Save Work,  Time and Money.&#8221;</p></blockquote>
<p>A very clever marketing campaign huh! And I think it works. <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Go and <a href="http://www.richwp.com/">download</a> the 12 themes now. This  will be available for a limited time only. So it&#8217;s now or never. <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.amorfrancis.com/freepremium-wordpress-themes.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Premium WordPress Themes Competition Winner</title>
		<link>http://www.amorfrancis.com/premium-wordpress-themes-competition-winner.php</link>
		<comments>http://www.amorfrancis.com/premium-wordpress-themes-competition-winner.php#comments</comments>
		<pubDate>Fri, 23 Apr 2010 23:06:18 +0000</pubDate>
		<dc:creator>Amor</dc:creator>
				<category><![CDATA[Contests]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Premium WordPress Themes]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WPShout]]></category>

		<guid isPermaLink="false">http://www.amorfrancis.com/?p=2869</guid>
		<description><![CDATA[So happy, thankful and lucky for being selected as one of the winners in WPShout&#8216;s Massive Premium Themes Competition last week. I won a WpShowcase Theme Standard Pack (worth $59) from one of the Sponsors &#8211; Gabfire Themes. The contest was fairly easy as you just have to follow @WPShout on Twitter. The contest ended ]]></description>
			<content:encoded><![CDATA[<p>So happy, thankful and lucky for being selected as one of the winners in <strong><a href="http://wpshout.com">WPShout</a>&#8216;s </strong><a href="http://wpshout.com/massive-premium-themes-competition/"><strong>Massive Premium Themes Competition</strong></a> last week.</p>
<p>I won a<strong> </strong><a href="http://www.gabfirethemes.com/gabfire-wpshowcase-theme/"><strong>WpShowcase Theme</strong></a> Standard Pack (worth $59) from one of the Sponsors &#8211; <strong><a href="http://www.gabfirethemes.com">Gabfire Themes</a></strong>.</p>
<p style="text-align: center;"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/04/wpshowcase.gif"><img class="size-full wp-image-2870 aligncenter" title="wpshowcase" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/04/wpshowcase.gif" alt="WPShowcase Theme" width="294" height="561" /></a></p>
<p>The contest was fairly easy as you just have to follow<strong> </strong><a href="http://twitter.com/wpshout"><strong>@WPShout</strong></a> on Twitter. The contest ended last Friday, April 16. Winners were randomly selected from @WPShout followers through <a href="www.random.org">Random.org</a>. Was so delighted when I read the tweet mentioning me as one of the winners! Woot!</p>
<p><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/04/twitter-conversation.jpg"><img class="size-full wp-image-2890 alignnone" title="twitter-conversation" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/04/twitter-conversation.jpg" alt="twitter" width="420" height="179" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amorfrancis.com/premium-wordpress-themes-competition-winner.php/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Tester, Anyone?</title>
		<link>http://www.amorfrancis.com/wordpress-theme-tester-anyone.php</link>
		<comments>http://www.amorfrancis.com/wordpress-theme-tester-anyone.php#comments</comments>
		<pubDate>Thu, 28 Jan 2010 08:55:53 +0000</pubDate>
		<dc:creator>Amor</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[WPShout]]></category>

		<guid isPermaLink="false">http://www.amorfrancis.com/?p=2416</guid>
		<description><![CDATA[After few months of neglecting my WordPress Theme designs coz of my addiction in Facebook (Farmville and Cafe World in particular). I am almost finished with the theme intended to be released for free. I&#8217;m done editing the options page. It&#8217;s my first time to include Advanced Options Page in a theme, glad I read ]]></description>
			<content:encoded><![CDATA[<p>After few months of neglecting my <strong>WordPress Theme</strong> designs coz of my addiction in <strong>Facebook</strong> (Farmville and Cafe World in particular). I am almost finished with the theme intended to be released for free.</p>
<p>I&#8217;m done editing the options page. It&#8217;s my first time to include Advanced Options Page in a theme, glad I read <a href="http://wpshout.com/"><strong>Alex Denning</strong></a>&#8216;s article on how to <a href="http://wpshout.com/create-an-advanced-options-page-in-wordpress/"><strong>Create an Advanced Options Page in WordPress</strong></a>. Thank you, thank you! I don&#8217;t know if I would be able to make it myself hadn&#8217;t I read your article. It really was a <strong>big help</strong>.</p>
<p>Here are some of the theme&#8217;s screenshots.</p>
<div id="attachment_2419" class="wp-caption alignnone" style="width: 386px"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme.jpg"><img class="size-full wp-image-2419" title="BVWP-theme" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme.jpg" alt="" width="376" height="320" /></a><p class="wp-caption-text">Header - right side</p></div>
<div id="attachment_2418" class="wp-caption alignnone" style="width: 373px"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-sidebar.jpg"><img class="size-full wp-image-2418" title="BVWP-theme-sidebar" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-sidebar.jpg" alt="" width="363" height="232" /></a><p class="wp-caption-text">Sidebar </p></div>
<div id="attachment_2420" class="wp-caption alignnone" style="width: 410px"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-comment.jpg"><img class="size-full wp-image-2420" title="BVWP-theme-comment" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-comment.jpg" alt="" width="400" height="172" /></a><p class="wp-caption-text">Comment Section</p></div>
<div id="attachment_2421" class="wp-caption alignnone" style="width: 410px"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-footer.jpg"><img class="size-full wp-image-2421" title="BVWP-theme-footer" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-footer.jpg" alt="" width="400" height="191" /></a><p class="wp-caption-text">Footer - left side</p></div>
<div id="attachment_2422" class="wp-caption alignnone" style="width: 420px"><a href="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-options.jpg"><img class="size-full wp-image-2422" title="BVWP-theme-options" src="http://www.amorfrancis.com/myblog/wp-content/uploads/2010/01/BVWP-theme-options.jpg" alt="" width="410" height="584" /></a><p class="wp-caption-text">Advanced Options Page</p></div>
<p>So I am looking for anyone who could test the theme as I do not have access to all kinds of browser and operating systems. I&#8217;ve tested it already in the latest versions of Firefox, Chrome and Internet Explorer. Please let me know if you&#8217;re interested to test it so I can email the link. Just leave your comment below. I&#8217;m also open for suggestions, in case you want something to be added.</p>
<p>By the way, as you may have noticed, I intentionally did not mention the name of this WordPress Theme, even blurring the name in the image. I wonder if you can guess what it is? <img src='http://www.amorfrancis.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.amorfrancis.com/wordpress-theme-tester-anyone.php/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

