<?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>... coding (the life) &#187; wordpress</title>
	<atom:link href="http://www.marvinmarcelo.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marvinmarcelo.com</link>
	<description>Anything about programming, and a little about me.</description>
	<lastBuildDate>Mon, 09 Jan 2012 13:44:35 +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>Quickie Visitors Country WP Plugin</title>
		<link>http://www.marvinmarcelo.com/quickie-visitors-country-wp-plugin/</link>
		<comments>http://www.marvinmarcelo.com/quickie-visitors-country-wp-plugin/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 02:14:54 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[job]]></category>
		<category><![CDATA[me stuff]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[work related]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=1382</guid>
		<description><![CDATA[This plugin is dependent on WP/GeoTrack by Johannes Lietz, this is NOT a stand-alone plugin, it won&#8217;t work if WP/GeoTrack is not installed anyway, so it&#8217;s safe. And don&#8217;t look for it in WP Plugins repo, you won&#8217;t find it &#8230; <a href="http://www.marvinmarcelo.com/quickie-visitors-country-wp-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This plugin is dependent on <a title="Visit plugin site" href="http://dadabase.de/weblog/archives/2006/05/23/wordpress-geotrack-plugin">WP/GeoTrack</a> by <a title="Visit author homepage" href="http://dadabase.de/">Johannes Lietz</a>, this is NOT a stand-alone plugin, it won&#8217;t work if <a title="Visit plugin site" href="http://dadabase.de/weblog/archives/2006/05/23/wordpress-geotrack-plugin">WP/GeoTrack</a> is not installed anyway, so it&#8217;s safe.</p>
<p>And don&#8217;t look for it in <a href="http://wordpress.org/extend/plugins/">WP Plugins</a> repo, you won&#8217;t find it there <img src='http://www.marvinmarcelo.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
Plugin Name: Top Visitors Flag
Plugin URI: http://www.marvinmarcelo.com/
Description: This plugin displays visitors on sidebar as widget dependent on &lt;a href=&quot;http://dadabase.de/weblog/archives/2006/05/23/wordpress-geotrack-plugin&quot;&gt;WP/GEO-Track plugin&lt;/a&gt;.
Author: Marvin Marcelo
Author URI: http://www.marvinmarcelo.com/
Version: 1.0.0
*/</span>
<span style="color: #000000; font-weight: bold;">function</span> tvf_get_topvisits<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">,</span> <span style="color: #000088;">$table_prefix</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;select count(*) as `rows` , `country` , `flagname` from `&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table_prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;geotrack` group by `country` order by `rows` desc limit 0 , 12&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$flagstats</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;li id='top-country-flags'&gt;&lt;h2&gt;Top Visiting Countries&lt;/h2&gt;&lt;div&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">/*  id string */</span>
  <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$flagstats</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cf</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$cf</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">rows</span> <span style="color: #339933;">=</span> <span style="color: #990000;">number_format</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cf</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">rows</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;,&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;img src=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #339933;">.</span> GEOTRACK_URL <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;flags/&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cf</span><span style="color: #339933;">-/&gt;</span>flagname <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;.png<span style="color: #000099; font-weight: bold;">\&quot;</span> alt=<span style="color: #000099; font-weight: bold;">\&quot;</span>Flag of <span style="color: #006699; font-weight: bold;">$cf-&gt;country</span> with <span style="color: #006699; font-weight: bold;">$cf-&gt;rows</span> visits<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$cf-&gt;country</span> with <span style="color: #006699; font-weight: bold;">$cf-&gt;rows</span> visits<span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/div&gt;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$html</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> init_tvf_init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	register_sidebar_widget<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Top Visitors Flags&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;tvf_get_topvisits&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">defined</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'GT_NOT_INSTALLED'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;!-- You need <span style="color: #000099; font-weight: bold;">\&quot;</span>http://dadabase.de/weblog/archives/2006/05/23/wordpress-geotrack-plugin<span style="color: #000099; font-weight: bold;">\&quot;</span> installed first--&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">else</span>
<span style="color: #009900;">&#123;</span>
  add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;plugins_loaded&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;init_tvf_init&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Also, you have to forgive the function, constants, and variables names, we all struggle for a better and sensible one <img src='http://www.marvinmarcelo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/quickie-visitors-country-wp-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working WP Core team</title>
		<link>http://www.marvinmarcelo.com/working-wp-core-team/</link>
		<comments>http://www.marvinmarcelo.com/working-wp-core-team/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 05:00:37 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[me stuff]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=1201</guid>
		<description><![CDATA[This is REAL work! They do not only trace bugs, but also annoyances, which is a big factor in UI experience. WordPress 2.8.4: Security Release Posted August 12, 2009 by Matt. Filed under Releases, Security. Yesterday a vulnerability was discovered: &#8230; <a href="http://www.marvinmarcelo.com/working-wp-core-team/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is REAL work! They do not only trace bugs, but also annoyances, which is a big factor in UI experience.</p>
<blockquote><p>WordPress 2.8.4: Security Release<br />
Posted August 12, 2009 by Matt. Filed under Releases, Security.</p>
<p>Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to verify a user requested a password reset. As a result, the first account without a key in the database (usually the admin account) would have its password reset and a new password would be emailed to the account owner. This doesn&#8217;t allow remote access, but it is very annoying.</p>
<p>We fixed this problem last night and have been testing the fixes and looking for other problems since then. Version 2.8.4 which fixes all known problems is now available for download and is highly recommended for all users of WordPress.</p></blockquote>
<p>Source: <a href="http://wordpress.org/development/2009/08/2-8-4-security-release/">http://wordpress.org/development/2009/08/2-8-4-security-release/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/working-wp-core-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superfish for WordPress</title>
		<link>http://www.marvinmarcelo.com/superfish-for-wordpress/</link>
		<comments>http://www.marvinmarcelo.com/superfish-for-wordpress/#comments</comments>
		<pubDate>Fri, 15 May 2009 22:12:56 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[me stuff]]></category>
		<category><![CDATA[work related]]></category>
		<category><![CDATA[superfish]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=1009</guid>
		<description><![CDATA[Header.php &#60;!-- replace &#34;WP_STYLESHEET_DIRECTORY&#34; with this &#60;?php bloginfo('stylesheet_directory'); ?&#62; Need to bring your own minified (not packed) jquery version, some bug that it didn't work using WP jquery package --&#62; &#60;script src=&#34;WP_STYLESHEET_DIRECTORY/javascript/jquery-1.2.6.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;script src=&#34;WP_STYLESHEET_DIRECTORY/javascript/superfish.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(document).ready(function() { &#8230; <a href="http://www.marvinmarcelo.com/superfish-for-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Header.php</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">  replace &quot;WP_STYLESHEET_DIRECTORY&quot; with this </span>
<span style="color: #808080; font-style: italic;">    &lt;?php bloginfo('stylesheet_directory'); ?&gt; </span>
<span style="color: #808080; font-style: italic;">  Need to bring your own minified (not packed) jquery version, </span>
<span style="color: #808080; font-style: italic;">  some bug that it didn't work using WP jquery package</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;WP_STYLESHEET_DIRECTORY/javascript/jquery-1.2.6.min.js&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;WP_STYLESHEET_DIRECTORY/javascript/superfish.js&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span>
$(document).ready(function() {
        $('ul.sf-menu').superfish();
});
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;WP_STYLESHEET_DIRECTORY/superfish.css&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;ul class=&quot;sf-menu&quot;&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'  &lt;li&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009933; font-style: italic;">/** 
 * do not include links 
 * wp_list_pages('title_li=&amp;exclude=590,155,163'); 
 **/</span>
wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li=&amp;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009933; font-style: italic;">/**
 * or use only specific categories 
 * wp_list_bookmarks('title_li=&amp;categorize=0&amp;category=7'); 
 **/</span>
wp_list_bookmarks<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li=&amp;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span></pre></div></div>

<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/superfish-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blueprint Superfish Minimalist Theme</title>
		<link>http://www.marvinmarcelo.com/blueprint-superfish-minimalist-theme/</link>
		<comments>http://www.marvinmarcelo.com/blueprint-superfish-minimalist-theme/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 02:07:38 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[productivity]]></category>
		<category><![CDATA[work related]]></category>
		<category><![CDATA[minimalist]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=746</guid>
		<description><![CDATA[Theme out of Blueprint CSS framework and Superfish UL Based menu blueprint-sf]]></description>
			<content:encoded><![CDATA[<p>Theme out of Blueprint CSS framework and Superfish UL Based menu</p>
<p><a href="http://www.marvinmarcelo.com/wp-content/uploads/2009/03/blueprint-sf.zip">blueprint-sf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/blueprint-superfish-minimalist-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My iPhone friendly blog</title>
		<link>http://www.marvinmarcelo.com/my-iphone-friendly-blog/</link>
		<comments>http://www.marvinmarcelo.com/my-iphone-friendly-blog/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 01:29:23 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=706</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-707" title="iphone-compatible-plugin-1" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/iphone-compatible-plugin-1.jpg" alt="iphone-compatible-plugin-1" width="320" height="480" /></p>
<p><img class="aligncenter size-full wp-image-708" title="iphone-compatible-plugin-2" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/iphone-compatible-plugin-2.jpg" alt="iphone-compatible-plugin-2" width="320" height="480" /></p>
<p><img class="aligncenter size-full wp-image-709" title="iphone-compatible-plugin-3" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/iphone-compatible-plugin-3.jpg" alt="iphone-compatible-plugin-3" width="320" height="480" /></p>
<p><img class="aligncenter size-full wp-image-710" title="iphone-compatible-plugin-4" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/iphone-compatible-plugin-4.jpg" alt="iphone-compatible-plugin-4" width="320" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/my-iphone-friendly-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for iphone</title>
		<link>http://www.marvinmarcelo.com/wordpress-for-iphone/</link>
		<comments>http://www.marvinmarcelo.com/wordpress-for-iphone/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 12:52:40 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[productivity]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/wordpress-for-iphone/</guid>
		<description><![CDATA[Hands-on on wordpress for iPhone.]]></description>
			<content:encoded><![CDATA[<p>Hands-on on wordpress for iPhone.</p>
<p><a href="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-f2b90914-c1d8-4721-9aa9-70df6d6d88ea.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-f2b90914-c1d8-4721-9aa9-70df6d6d88ea.jpeg" alt="" width="200" height="300" /></a></p>
<p><a href="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-74582043-5aad-4f21-a710-a4655ae0b924.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-74582043-5aad-4f21-a710-a4655ae0b924.jpeg" alt="" width="200" height="300" /></a></p>
<p><a href="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-d9bbb9e0-be54-4936-8e85-e62014770301.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.marvinmarcelo.com/wp-content/uploads/2009/01/p-480-320-d9bbb9e0-be54-4936-8e85-e62014770301.jpeg" alt="" width="200" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/wordpress-for-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New theme installed</title>
		<link>http://www.marvinmarcelo.com/new-theme-installed/</link>
		<comments>http://www.marvinmarcelo.com/new-theme-installed/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 14:22:39 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=371</guid>
		<description><![CDATA[Thanks to ndesign-studio for this very nice theme. I guess you figured out what it&#8217;s trying to emulate, right &#8211; iPhone / Mac. But I don&#8217;t have a Mac, only the iPhone. What I like about this system is that &#8230; <a href="http://www.marvinmarcelo.com/new-theme-installed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Thanks to ndesign-studio for this very nice theme. I guess you figured out what it&#8217;s trying to emulate, right &#8211; iPhone / Mac. But I don&#8217;t have a Mac, only the iPhone. What I like about this system is that it looks really firm, stable, though not too colorful or fancy skins, it is pretty solid in its own.</p>
<p> I retain the random quotes below the header, that&#8217;s what I had in Ice theme. <br style="clear: both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/new-theme-installed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Very Odd WordPress Remark</title>
		<link>http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/</link>
		<comments>http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 00:28:36 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[job]]></category>
		<category><![CDATA[work related]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=218</guid>
		<description><![CDATA[I just got the most weirdest comment made on WordPress today, that is: (Email) I&#8217;ve had a play with 2.6 it still isn&#8217;t an advance on the current live versions that we&#8217;re currently using (IM) &#65279;i&#8217;m shockled how much i &#8230; <a href="http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just got the most weirdest comment made on WordPress today, that is:</p>
<blockquote><p><em>(Email)</em><br />
I&#8217;ve had a play with 2.6 it still isn&#8217;t an advance on the current live  versions that we&#8217;re currently using</p>
<p><em>(IM)</em><br />
&#65279;i&#8217;m shockled how much i hate the new version</p></blockquote>
<p>What?!!! When did any given group of developers or software companies created a new version of their product that is worse than the previous one? Especially WordPress, having a great attention these days.</p>
<p>Simply compare the two versions &#8220;Create New Post&#8221; page</p>
<p><a rel="attachment wp-att-226" href="http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/attachment/221/"><img class="alignnone size-full wp-image-226" title="WP_2_2_1" src="http://www.marvinmarcelo.com/wp-content/uploads/2008/08/221.jpg" alt="" width="500" height="218" /></a></p>
<p><a rel="attachment wp-att-227" href="http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/attachment/26/"><img class="alignnone size-full wp-image-227" title="WP_2_6" src="http://www.marvinmarcelo.com/wp-content/uploads/2008/08/26.jpg" alt="" width="500" height="281" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/a-very-odd-wordpress-remark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This really works</title>
		<link>http://www.marvinmarcelo.com/this-really-works/</link>
		<comments>http://www.marvinmarcelo.com/this-really-works/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 01:54:45 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[work related]]></category>
		<category><![CDATA[referal]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=150</guid>
		<description><![CDATA[Yesterday, I signed up at LinkReferal to try the scheme, and it really works. Members there are really doing their part &#8211; visiting other site so that others visit yours, nice!!! I have setup GeoTrack plugin for wordpress to track &#8230; <a href="http://www.marvinmarcelo.com/this-really-works/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I signed up at <a href="http://www.linkreferral.com/adwel.pl?oldrefid=183679">LinkReferal</a> to try the scheme, and it really works. Members there are really doing their part &#8211; visiting other site so that others visit yours, nice!!! I have setup <a href="http://dadabase.de/weblog/archives/2006/05/23/wordpress-geotrack-plugin/">GeoTrack plugin</a> for wordpress to track my recent visitors, and indeed, I have quite a number of referers coming from LinkReferal. Here&#8217;s my <a href="/site-stats/">GeoTrack Status</a></p>
<p>So I&#8217;m planning to keep up with it on my free time. It isn&#8217;t too much, in exchange for a traffic. <a href="http://www.linkreferral.com/adwel.pl?oldrefid=183679">Check it out</a> yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/this-really-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using All-in-one-SEO-pack with single meta keyword / description</title>
		<link>http://www.marvinmarcelo.com/using-all-in-one-seo-pack-with-single-meta-keyword-description/</link>
		<comments>http://www.marvinmarcelo.com/using-all-in-one-seo-pack-with-single-meta-keyword-description/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 02:20:58 +0000</pubDate>
		<dc:creator>Marvin</dc:creator>
				<category><![CDATA[job]]></category>
		<category><![CDATA[work related]]></category>
		<category><![CDATA[all-in-one-seo]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marvinmarcelo.com/?p=121</guid>
		<description><![CDATA[I installed this cool All in One SEO Pack plugin but I noticed the rendered header tags has two entries for meta description and meta keywords. If you haven&#8217;t moved your tags in the header template, those are the first &#8230; <a href="http://www.marvinmarcelo.com/using-all-in-one-seo-pack-with-single-meta-keyword-description/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I installed this cool <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a> plugin but I noticed the rendered header tags has two entries for meta description and meta keywords. If you haven&#8217;t moved your tags in the header template, those are the first meta pair from your current theme. The other two were generated by the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a> plugin.</p>
<p>To keep this from duplicating, which I&#8217;m not sure if having two versions of these metas is good or bad, I added condition in my header template to disable the static metas from my current theme.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">class_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;All_in_One_SEO_Pack&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;"># move these metas here 
</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;meta name=&quot;keywords&quot; content=&quot;......&quot; /&gt;
&lt;meta name=&quot;description&quot; content=&quot;......&quot;/&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #009900;">&#125;</span> 
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>And if you deactivate the plugin, these hardcoded metas from your plugin will work instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marvinmarcelo.com/using-all-in-one-seo-pack-with-single-meta-keyword-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

