<?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>SEO Web Design with Binh Nguyen &#187; WP</title>
	<atom:link href="http://www.binh.name/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.binh.name</link>
	<description>Freebies for SEO, Web design, computers, blogging</description>
	<lastBuildDate>Thu, 25 Jun 2009 21:40:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Less Filters Plugin for WordPress</title>
		<link>http://www.binh.name/less-filter-plugin-for-wordpress/</link>
		<comments>http://www.binh.name/less-filter-plugin-for-wordpress/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 23:31:42 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.binh.name/?p=184</guid>
		<description><![CDATA[I made this plugin a while ago but I didn't have time to upload it. So please forgive me. Download Here is the link to download it: less-filters. Quick instruction: What you need to do is extract the less-filter.php file to /wp-content/plugins/ folder then activate the plugins. You will then be able to include javascript [...]]]></description>
			<content:encoded><![CDATA[<p>I made this plugin a while ago but I didn't have time to upload it. So please forgive me.</p>
<h2>Download</h2>
<p>Here is the link to download it: <a href="http://www.binh.name/files/2009/04/less-filters.zip">less-filters</a>.</p>
<h2>Quick instruction:</h2>
<p>What you need to do is extract the<strong> less-filter.php</strong> file to <strong>/wp-content/plugins/</strong> folder then activate the plugins. You will then be able to include javascript and other advanced codes into the wpmu post body and widgets. I will give more instruction soon. If not, please remind me.</p>
<h2>Property right:</h2>
<p>I made this plugin, so please kindly give me some credit if you talk about it or reproduce it. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/less-filter-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How to Change WPMU Category Name or Slug</title>
		<link>http://www.binh.name/how-to-change-wpmu-category-name-or-slug/</link>
		<comments>http://www.binh.name/how-to-change-wpmu-category-name-or-slug/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 19:13:29 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[WP]]></category>
		<category><![CDATA[category name]]></category>
		<category><![CDATA[category slug]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[WPMU category]]></category>

		<guid isPermaLink="false">http://www.binh.name/2008/04/29/how-to-change-wpmu-category-name-or-slug/</guid>
		<description><![CDATA[I tried to edit my WordPress MU Category information such as category name and category slug. What happened at first is that often the category entry is totally replaced by a Tag entry. Other times, the category record's new information is not saved at all. I troubleshot the problem and here is some temporary solution [...]]]></description>
			<content:encoded><![CDATA[<p>I tried to edit my <strong>WordPress MU Category</strong> information such as <em>category name</em> and <em>category slug</em>. What happened at first is that often the category entry is totally replaced by a Tag entry. Other times, the category record's new information is not saved at all. I troubleshot the problem and here is some temporary solution for a MySQL literate user.</p>
<h3>The problem</h3>
<p>When attempt to change category name or slug, the category ID is gone and replaced with a new number, which is the ID of an existing tag. The worst thing is that the old misplaced category record completely disappeared from both the blog and the Categories editor page.</p>
<p>This problem happens even when changing only category hierarchy (super &#038; sub category relationship). The replacement appear to be random. It doesn't replace with a Tag that has exactly the same slug. In fact, the category record is unchanged if the slug is the same as another category's lug or another tag's slug,
  </p>
<h4>Example 1</h4>
<table border="1" cellpadding="4" cellspacing="0">
<tr>
<td>&nbsp;</td>
<td><strong>Category ID</strong></td>
<td><strong>Category Name</strong></td>
<td><strong>Category Slug</strong></td>
</tr>
<tr>
<td>Old value</td>
<td>1</td>
<td>Official Log</td>
<td>log</td>
</tr>
<tr>
<td>New value</td>
<td>unchanged</td>
<td>Site Logs</td>
<td>logs</td>
</tr>
<tr>
<td>Result</td>
<td>50</td>
<td>PHP</td>
<td>php</td>
</tr>
</table>
<h4>Example 2</h4>
<table border="1" cellpadding="4" cellspacing="0">
<tr>
<td>&nbsp;</td>
<td><strong>Category ID</strong></td>
<td><strong>Category Name</strong></td>
<td><strong>Category Slug</strong></td>
</tr>
<tr>
<td>Old value</td>
<td>10</td>
<td>WordPress Themes</td>
<td>wp-themes</td>
</tr>
<tr>
<td>New value</td>
<td>unchanged</td>
<td>unchanged</td>
<td>themes</td>
</tr>
<tr>
<td>Result</td>
<td>49</td>
<td>Tweaks</td>
<td>tweaks</td>
</tr>
</table>
<h3>Safe Method to Modify WPMU Category</h3>
<p>I don't have a really good solution yet. At this time I've been hacking into the database to modify the slug value. You can follow the same steps too::</p>
<ol>
<li> Open phpMyAdmin for your WordPress MU Database</li>
<li>Browse table wp_#_terms (# is the number of the blog being modified)</li>
<li> Search existing term record that have <strong>slug</strong> the same as the slug value you want to give to that category. Modify that existing slug to something else, because it's a slug of a tag (not as important as your category).
  </li>
<li>Search for the category you want to modify. Change the values to what you want.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/how-to-change-wpmu-category-name-or-slug/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WP-Super-Cache Does not Allow PHP Conditions</title>
		<link>http://www.binh.name/super-cache-does-not-allow-php-conditions/</link>
		<comments>http://www.binh.name/super-cache-does-not-allow-php-conditions/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 18:44:08 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[wordpress-plugin]]></category>
		<category><![CDATA[wp-super-cache]]></category>

		<guid isPermaLink="false">http://www.binh.name/2008/03/17/wp-super-cache-does-not-allow-php-conditions/</guid>
		<description><![CDATA[WP-Super-Cache WordPress plugin does it again. This time, the cache doesn't let me display custom message for user with Internet Explorer, because it only cache the first instant of the page. Do you notice the different view of my blog's header when it you see on Firefox, and when you see it on Internet Explorer? [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WP-Super-Cache</strong> <em>WordPress plugin</em> does it again. This time, the cache doesn't let me display custom message for user with Internet Explorer, because it only cache the first instant of the page.</p>
<p>Do you notice the different view of my blog's header when it you see on Firefox, and when you see it on Internet Explorer? I inserted some PHP code to recognize when it's IE to display the Firefox recommendation message. That's because I disabled the <strong>WP-Super-Cache</strong>. When <strong>Super Cache</strong> is enabled, it will make the page display exactly the same on both FireFox, and IE. </p>
<p>I am going to look for some solution. For now, let's bear not having <strong>Super Cache</strong> on my site. So please, don't abuse it and send tons of traffic from Digg and StumbleUpon. <img src='http://www.binh.name/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Thanks.</p>
<p><strong>Previously</strong>, the plugin duplicated my content. It's a long story and I had solution for that and I will write about it later on.</p>
<p>You can find the plugin here: <a href="http://ocaoimh.ie/wp-super-cache/">WP-Super-Cache</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/super-cache-does-not-allow-php-conditions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>5 Free New Year WordPress Themes 2008</title>
		<link>http://www.binh.name/5-free-new-year-wordpress-themes-2008/</link>
		<comments>http://www.binh.name/5-free-new-year-wordpress-themes-2008/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 18:37:02 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[new-year]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.binh.name/2007/12/28/5-free-new-year-wordpress-themes-2008/</guid>
		<description><![CDATA[Who want to rush for some FREE New Year WordPress Themes? Did you notice earlier I wrote 7 Free Christmas WordPress Themes 2007? It was quite successful and here I decided to give you more freebies for your New Year look. I hope these themes will be available for years to come, not just 2008. [...]]]></description>
			<content:encoded><![CDATA[<p>Who want to rush for some FREE New Year WordPress Themes? Did you notice earlier I wrote <a href="http://www.binh.name/2007/12/12/7-free-wordpress-christmas-themes-2007/" title="7 Free Christmas WordPress Themes 2007 (December 12, 2007)">7 Free Christmas WordPress Themes 2007</a>?  It was quite successful and here I decided to give you more freebies  for your New Year look. I hope these themes will be available for years  to come, not just 2008. Just now I published a post <a href="http://www.binh.name/2007/12/28/new-look-for-my-wordpress-blog-for-2008/">New Look for My WordPress Blog for 2008</a> and that's why I got the idea of writing this post.</p>
<h3>1. New Year 2008 WordPress Theme</h3>
<p align="center"><a href="http://wpdesign.downloadyour.com/index.php?wptheme=New+Year" title="Live demo for New Year 2008 WordPress Theme"><img src="http://www.binh.name/files/2007/12/new-year.png" alt="New Year WordPress Theme" /></a></p>
<p align="center"><a href="http://wpdesign.downloadyour.com/index.php?wptheme=New+Year" target="_blank">Live Demo</a> |<a href="http://www.rahmatblog.com/wp-content/uploads/new-year.zip" target="_blank">Download</a></p>
<p>Celebrate new year 2008 with <em>“New Year 2008 WordPress Theme”</em>. Fireworks catchy header, will impress your readers.</p>
<p><strong>Features:</strong></p>
<ul>
<li>3 columns</li>
<li>2008 new year theme</li>
<li>valid XHTML and CSS</li>
<li>widget ready</li>
<li>premium design</li>
<li>support WordPress 2.3.1</li>
<li>also support WordPress 2.2</li>
</ul>
<h3>2. Get a Free Custom Theme for 2008</h3>
<p align="center"><a href="http://www.blogohblog.com/get-a-free-custom-theme-for-2008/" title="Contest page for Getting a Free Custom Theme for 2008"><img src="http://www.binh.name/files/2007/12/custome-wp-theme-20081.png" alt="Image for Free Custom Theme for 2008" /></a></p>
<p align="center"><a href="http://www.blogohblog.com/get-a-free-custom-theme-for-2008/" title="Free Custom WordPress Theme by Plainbeta">Contest Page</a></p>
<p>This is a contest. The participation need to write a post and link  to that contest page, then leave a comment on that page to let the  author know about the entry. Good-luck for people who decided to  participate.</p>
<h3>3. New Years Eve WordPress Theme</h3>
<p align="center"><a href="http://wpdesign.downloadyour.com/index.php?wptheme=New+Years+Eve" title="Live Demo for New Years Eve WordPress Theme"><img src="http://www.binh.name/files/2007/12/wp-theme-new-year-eve.png" alt="New Year Eve WordPress Theme" /></a></p>
<p align="center">&nbsp;</p>
<p align="center"><a href="http://wpdesign.downloadyour.com/index.php?wptheme=New+Years+Eve" target="_blank">Live Demo</a> | <a href="http://www.rahmatblog.com/wp-content/uploads/new-years-eve.zip" target="_blank">Download</a></p>
<p>New Years Eve Features:</p>
<ul>
<li>3-column wordpress theme</li>
<li>new year wordpress theme</li>
<li>valid XHTML and CSS</li>
<li>widget ready</li>
<li>premium quality</li>
<li>Works on the latest WordPress 2.3.1</li>
<li>Backward compatible with WordPress 2.2</li>
</ul>
<h3>4. Free Custom WordPress Theme by Plainbeta</h3>
<p align="center"><a href="http://plainbeta.com/2007/12/20/free-custom-wordpress-theme/" title="Free Custom WordPress Theme by Plainbeta"><img src="http://plainbeta.com/wp-content/uploads/2007/12/free-wp-layout.gif" alt="Wordpress From Scratch" height="258" width="200" /></a></p>
<p align="center"><a href="http://plainbeta.com/2007/12/20/free-custom-wordpress-theme/" title="Free Custom WordPress Theme by Plainbeta">Contest page</a></p>
<p>No bull, it's another chance for you to get a free custom WordPress  layout. It's another contest. This time its Plainbeta who want to gain  so popularity in the blogosphere by giving away his time to design a  beautiful theme for the blog that he likes.</p>
<h3>5. Your own theme</h3>
<p>Well, I tried my best in limited time to find 7 themes to match with  the earlier post. Unfortunately there aren't as many out there, so...  here end up only 4. Do you have one to share? Please leave some comment  here to advertise it and I will include into my article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/5-free-new-year-wordpress-themes-2008/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New Look for My WordPress Blog for 2008</title>
		<link>http://www.binh.name/new-look-for-my-wordpress-blog-for-2008/</link>
		<comments>http://www.binh.name/new-look-for-my-wordpress-blog-for-2008/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 18:33:50 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google Adsense]]></category>
		<category><![CDATA[new-year]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.binh.name/2007/12/28/new-look-for-my-wordpress-blog-for-2008/</guid>
		<description><![CDATA[Christmas is getting over and New Year is coming. The seasonal theme is getting out-dated soon in a week or so. Also, my blog Binh dot Name is growing from few unique visitors to average 50 per day. I really need a brand new unique look for a professional image. So far I've been holding [...]]]></description>
			<content:encoded><![CDATA[<p>Christmas is getting over and New Year is coming. The seasonal theme is getting out-dated soon in a week or so. Also, my blog <a title="Binh Nguyen’s Website and Blog Resources" href="http://www.binh.name/">Binh dot Name</a> is growing from few unique visitors to average 50 per day. I really need a brand new unique look for a professional image.</p>
<p>So far I've been holding back writing and promoting my blog and asked myself <a title="Permanent Link to Should I Migrate to WordPress MU?" rel="bookmark" href="http://www.binh.name/should-i-migrate-to-wordpress-mu/">Should I Migrate to WordPress MU?</a>. Since then I made the decision to <a title="I'm Migrating to WordPress MU (December 9, 2007)" href="http://www.binh.name/im-migrating-to-wordpress-mu/">Migrate to WordPress MU</a> and then finally <a title="Successful Migration to WordPress MU (December 12, 2007)" href="http://www.binh.name/successful-migration-to-wordpress-mu/">Successfully Migrated to WordPress MU</a>.</p>
<p>I've been showing this <a href="http://www.binh.name/wordpress-theme-for-christmas/">Christmas Days theme</a> since 21 Nov 2007 and believe me I really got itchy when looking at it  now. Perhaps it is a good choice for a start up blog for a simple look  and feel while giving people a clue that Christmas is coming. However, theme become obsolete now. The themes from <a href="http://www.binh.name/7-free-wordpress-christmas-themes-2007/">7 Free Christmas WordPress Themes 2007</a> are much better than this.</p>
<h2>The New Design</h2>
<p><strong>New Year is coming! </strong>I need some theme that can meet some very strict requirements. Before continue reading, please open <a title="Coppy Blogger Homepage" href="http://http://www.copyblogger.com/">Copy Blogger</a> and <a title="Daily Blog Tips Homepage" href="http://www.dailyblogtips.com/">Daily Blog Tips</a> in new windows so that you can understand what I mean without having a headache. I want to make my blog look similar to those.</p>
<h3>Header<strong> </strong></h3>
<p>Header should include</p>
<ol>
<li>the logo/site name,</li>
<li>site slogan,</li>
<li>search box (wordpress or Google)</li>
<li>RSS feeds (nofollow links)</li>
<li>A horizontal menu that show pages by slug, not full title.</li>
<li>Sub-pages should go in drop down, or not shown at all.</li>
<li>And other must-have features that the designer thinks fit.</li>
</ol>
<p>The header should have at least the following characteristics:</p>
<ol>
<li>be lower to save space and possibly allow some 728 banner ad under it. Perhaps 100px height?</li>
<li>uniquely identify my blog from others.</li>
<li>encourage people to subscribe to my feeds.</li>
</ol>
<h3>The Body/Main content</h3>
<p>The body should contain:</p>
<ol>
<li> The Page title</li>
<li>Whatever content a blog should have</li>
</ol>
<p>The body should have the following attributes</p>
<ol>
<li>be at least 468px to fit that size of banner ad and photos.</li>
<li>preferably 480px or 500px.</li>
<li>Blockqoute should be blockquote.</li>
<li>Minimal modification to default styles.</li>
</ol>
<h3>The Side Bars<a title="sidebars" name="sidebars"></a>:</h3>
<ol>
<li>One sidebar on the left to display most relevant stuff like pages and categories.</li>
<li>Two side bars on the right to display relevant links or advertisements. Possibly 150px wide to display 150x150 buttons.</li>
<li>A side bar below those 2 sidebars, which is as wide as both of them, to display longer links.</li>
<li>Should look professional while saving as much space as possible.</li>
</ol>
<h3>Widgets</h3>
<p>Who dare to take a big challenge with widgets? If I will definitely break my way out to design some extra widget place holders such as:</p>
<ol>
<li>the sidebars,</li>
<li>the whole pane right below the header,</li>
<li>above the post title, OR below it but above the fold</li>
<li>below the post content, but before the comments</li>
<li>below the comments, before the footer</li>
<li>the footer, so that I can change footer</li>
</ol>
<p>Why? I hate modifying the themes to insert additional content. Do you? <a href="http://drupal.org/">Drupal</a>, <a href="http://www.dotnetnuke.com/">DotNetNuke</a> and most other <a href="http://en.wikipedia.org/wiki/Content_management_system">Content Management System</a> (CMS) have those, why the most famous one WordPress don't? Too much limitation cause lots of suffering for bloggers.</p>
<p>Every day I waste time on searching for plugins to do very simple job for my blog, still couldn't get satisfied. Then, I need to modify the themes. Then, I need to modify the plugins. They say WordPress  require little tech knowledge, my use of it prove the opposite.</p>
<p>Additionally if possible, the theme should have options in the WordPress back-end <span style="text-decoration: underline;">Options</span> page.</p>
<h3>SEO Features</h3>
<p>I'm not yet an expert in SEO, yet. However I do have some basic requirements to meet elementary level of SEO:</p>
<ol>
<li>The site name must not be H1 for any pages other than home page.</li>
<li>Every page must have a H1 title, including archives, tags, pages, posts, categories, search etc.</li>
<li>All styles should be in external CSS file.</li>
<li>The lighter the better, so no unnecessary class attributes, use the ID attribute and nested HTML default classes to format elements instead. Example: Don't define a class "PostContent" when in fact the Content is under &lt;div id="content"&gt; already.</li>
<li>The main content goes first, then the side bars. No excuses for putting right sidebar in front of the main content.</li>
<li>JavaScript for menu? Good idea, but the menu must be written in HTML and dynamic by JavaScript, not use <em>document.write.</em></li>
<li>Ajax? yes another good idea, but please make sure only for sidebars.</li>
</ol>
<h3>The Styles</h3>
<p>Technically knowledgable about CSS in advanced level, I would like to have to following styles:</p>
<ol>
<li>The less classes, the better</li>
<li>Use ID and HTML element ID thoroughly</li>
<li>Smartly format image and objects depend on alignment (barely seen).</li>
<li>The less images the better, but must have enough to make the site look neat and nice.</li>
<li>The images need to be optimized over 10KB is not a good file size. Consider the dial-up users and the 10s effect.</li>
</ol>
<p>Am I too tough? The list above is only half of my requirements. If you think you are good enough, go ahead and take the credit. If you up for the challenge?</p>
<h2>Free Custom Blog Design</h2>
<p>Thanks to <a title="Posts by Quan Quach" href="http://www.blinkdagger.com/author/misterturtie/">Quan Quach</a> from <a href="http://www.blinkdagger.com">BlinkDagger</a> for writing <a title="Permanent Link: Win a Free Custom WordPress Design!" rel="bookmark" href="http://www.blinkdagger.com/blog/win-a-free-custom-wordpress-design">Win a Free Custom WordPress Design!</a> I come to realise that <a href="http://plainbeta.com/about/">Brian Purkiss</a> from <a href="http://plainbeta.com">plainBETA Design and Blogging</a> is giving out a <a rel="bookmark" href="http://plainbeta.com/2007/12/20/free-custom-wordpress-theme/">Free Custom WordPress Theme</a></p>
<p>Do I meet the requirements?</p>
<h3>Contest Requirements</h3>
<ol>
<li>Must be a WordPress powered blog: <em>OK</em></li>
<li>The desired layout must be a minimalist, web 2.0, like design: <em>OK</em></li>
<li><em> </em>The blog must be something that I like: <em>OK, but does that mean your friend is reserved?</em></li>
<li>No logo design can be involved: <em>OK, but does that mean you can't do graphic?</em></li>
<li>‘Designed by’ link <em>must</em> remain in the footer: <em>OK, if it is good then credit is reserved. After all that's the contest all about.</em></li>
<li>The blog already needs to be in existence: <em>OK, you are reading it.</em></li>
</ol>
<h3>How to Enter</h3>
<p>1: Write a post on your blog linking to this post ’selling’ your blog to me: <em>Done</em></p>
<p><strong>-Why should I pick <em>your</em> blog?</strong></p>
<p><strong>Answer:</strong></p>
<p>1.1 Would you like to design some blog that set its goal to <a href="http://www.binh.name/happy-new-year-2008/">10,000 subscribers</a>? I'm thinking of expanding my blog to pagerank 6+. Wouldn't you like to get a link back from so high PR site? Then my blog is for you.</p>
<p>1.2 Would you like to design a blog of a fellow web developer and take some nice credit from doing so? Then this blog is for you.</p>
<p>1.3 Would you like to give a hand to someone who help other bloggers and web master live on his blog? Then this blog is foryou.</p>
<p>1.4 Would you like to  take some high-requirements challenge and get well-known, instead of designing some simple blog just to throw your business card? Then this blog is for you.</p>
<p>1.5 Would you like to be recognized as a top WordPress designer and get known by the WordPress community? Then this blog is for you.</p>
<p><strong> -What do you want the design to look like?</strong></p>
<p><strong>Answer:</strong></p>
<p>As mentioned above. But I'd love to hear your expert advices if they work better.</p>
<p><strong> -Remember, I have to like your blog in order to pick it. So what’s so special about it?</strong></p>
<p><strong>Answer:</strong></p>
<p>At this stage it is not so special. I only help other bloggers to become better bloggers. I love to <a href="http://www.binh.name/help/">help others</a>. So if you help me you are giving a hand to other bloggers, too.</p>
<p>I'm sure my requirements are higher than other bloggers, so will you take the challenge?</p>
<p>2: <a href="http://plainbeta.com/contact/">Contact me</a> with a link to your entry.</p>
<p>Answer: OK, I will contact you after this.</p>
<h2>What's Next</h2>
<p>If Brian decide not to design my blog, I will end up spending some time choosing some free theme and customize it for my own use. Of course I will make it meet the requirements I set above. If I do, I will distribute it. If Brian does, I might ask him to let me distribute, too. So stay tune for the result.</p>
<p><a title="update1" name="update1"></a><em>Update 28/12/2007</em>: I realize some requirements maybe too high for a standard designer, so I don't expect to find or get those immediately.</p>
<p>Meanwhile, Happy New Year and Holidays to anyone who have. If you don't celebrate New Year in your country, why not celebrate it online?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/new-look-for-my-wordpress-blog-for-2008/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Remove Crazy WordPress MU HTML Filter</title>
		<link>http://www.binh.name/how-to-remove-crazy-wordpress-mu-html-filter/</link>
		<comments>http://www.binh.name/how-to-remove-crazy-wordpress-mu-html-filter/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 22:27:07 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[WP]]></category>
		<category><![CDATA[Google Adsense]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://www.binh.name/2007/12/22/how-to-remove-crazy-wordpress-mu-html-filter/</guid>
		<description><![CDATA[Have you ever seek for help on how to: enable JavaScript for WordPress MU post; remove WordPress MU HTML filter; or enable advanced HTML tags and attributes, like embedded object, flash, video, etc? I did. After migrating from WordPress 2.3.1 to WordPress MU 1.3.1 I lost all the JavaScript code from my posts and pages. [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever seek for help on how to:</p>
<ul>
<li>enable JavaScript for WordPress MU post;</li>
<li>remove WordPress MU HTML filter; or</li>
<li>enable advanced HTML tags and attributes, like embedded object, flash, video, etc?</li>
</ul>
<p>I did. After <a href="http://www.binh.name/2007/12/12/successful-migration-to-wordpress-mu/">migrating from WordPress 2.3.1 to WordPress MU 1.3.1</a> I lost all the JavaScript code from my posts and pages. I also experience few very serious issues, which I will write about later on.</p>
<h3>The Search</h3>
<p>I've tried to search for solution for few times. I found this post <a title="Permanent Link to A look at WordPress filters. Disable wpautop() on post formatting." rel="bookmark" href="http://wpbits.wordpress.com/2007/08/06/a-look-at-wordpress-filters-disable-wpautop-on-post-formatting/">A look at WordPress filters. Disable wpautop() on post formatting.</a> by Leonid Mamchenkov. It was not a correct solution for this problem. That post only point out how to disable the automatic insertion of &lt;p&gt; (paragraph tag), not enableing javascript and advanced HTML tag and styling.</p>
<p>Finally I found a a quick and easy solution to solve the issue. The credit goes to <a href="http://dev.robertmao.com">Robert Mao</a>, who wrote <a title="Permanent Link to Get rid of boring WPMU’s post html/javascript filtering…" rel="bookmark" href="http://dev.robertmao.com/2007/07/18/get-rid-of-boring-wpmus-post-htmljavascript-filtering/">Get rid of boring WPMU’s post html/javascript filtering…</a>, which pointed directly at the problem and give the solution. I follow what Robert said and found that the information on "<a onclick="javascript:urchinTracker ('/outgoing/codex.wordpress.org/Using_Javascript');" href="http://codex.wordpress.org/Using_Javascript">how to use Javascript</a>" from <em>WordPress Codex</em> is really misleading. It is complicated and is not a solution for this problem.</p>
<h3>The Solution</h3>
<p>What Robert pointed out, I found valid. You can do this too, here is how you can remove the crazy WordPress MU filter for post to enable JavaScript and advanced HTML:</p>
<ol>
<li>Open file <em>wp-includes/kse.php</em> in your WordPress MU folder</li>
<li>Locate line 717 to find:<br />
add_filter('content_save_pre', 'wp_filter_post_kses');</li>
<li>insert # before add_filter and you should have this:<br />
#add_filter('content_save_pre', 'wp_filter_post_kses');</li>
</ol>
<p>Upload the file and replace the official WordPress MU <em>wp-includes/kse.php</em> file.</p>
<p>You may want to edit the file directly on your host, it's all up to you. You may also want to make a plug in to disable the remove the filter.</p>
<h3>What's next?</h3>
<p>I tried to create a filter similar to what his suggested but it didn't work. This is the code I used in the filter:</p>
<p>remove_filter('content_save_pre', 'wp_filter_post_kses');</p>
<p>How about you? If you are a WordPress expert coder will you make a plugin to disable some annoying filters? If yes please give me a ping back or a comment to let me know.</p>
<p><strong>Update 05/04/2009: </strong>I made the plugin, here is the link to the download page: <a href="http://www.binh.name/2009/04/05/less-filter-plugin-for-wordpress/">Less Filter Plugin for WordPress</a><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/how-to-remove-crazy-wordpress-mu-html-filter/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>7 Free Christmas WordPress Themes 2007</title>
		<link>http://www.binh.name/7-free-wordpress-christmas-themes-2007/</link>
		<comments>http://www.binh.name/7-free-wordpress-christmas-themes-2007/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 22:54:41 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.binh.name/2007/12/12/7-free-wordpress-christmas-themes-2007/</guid>
		<description><![CDATA[Christmas is coming and people are eagerly searching for free Christmas themes for WordPress to download and dress up their WordPress blog. I myself did get in touch with this Christmas Days theme downloaded from Design Disease about a month ago. Recently, I got many hits from Google search for Christmas theme, so in this [...]]]></description>
			<content:encoded><![CDATA[<p>Christmas is coming and people are eagerly searching for <strong>free Christmas themes for WordPress</strong> to download and dress up their WordPress blog. I myself did get in touch with this Christmas Days theme downloaded from Design Disease about a month ago.</p>
<p>Recently, I got many hits from Google search for Christmas theme, so in this post I list all the Christmas themes for WordPress that you can download and use for free.</p>
<h3>Christmas Themes for WordPress</h3>
<p>This is my collection of WordPress themes, click on the link to open the <strong>download page</strong>.</p>
<h4>1. <a href="http://wp-themes.designdisease.com/2007/11/12/christmas-days-wordpress-theme-release/" target="_blank">Christmas Days</a></h4>
<p style="text-align: center"><a href="http://wp-themes.designdisease.com/2007/11/12/christmas-days-wordpress-theme-release/" target="_blank"><img src="http://www.binh.name/files/2007/12/christmas-days-wordpress-theme.png" alt="" width="400" height="251" /></a></p>
<p>This theme is what I'm using right now. I wrote earlier: <a title="Permanent Link to WordPress Theme for Christmas" href="http://www.binh.name/2007/11/21/wordpress-theme-for-christmas/" target="_blank">WordPress Theme for Christmas</a></p>
<p>From the author:</p>
<blockquote><p>This theme is a season theme for WordPress created by <a title="Design Disease" rel="nofollow" href="http://designdisease.com/" target="_blank">Design Disease</a>. The theme was created because most of us celebrate Christmas, and I wanted to make a gift to all bloggers around the world. The theme has been tested on WordPress 2.3.1 with Firefox , Opera, Safari and IE6/7. It validates as XHTML 1.0 Transitional.</p>
<p>Source: http://wp-themes.designdisease.com/2007/11/12/christmas-days-wordpress-theme-release/</p></blockquote>
<h4>2.<a href="http://wpthemes.amazing-christmas-ideas.com/cg/" target="_blank">Christmas Gifts (2 colums)</a></h4>
<p style="text-align: center"><a href="http://wpthemes.amazing-christmas-ideas.com/cg/" target="_blank"><img src="http://www.binh.name/files/2007/12/christmas-gifts-2-colums.png" border="1" alt="Christmas Gifts WordPress Theme" /></a></p>
<p>From the author:</p>
<blockquote><p><em>Christmas Gifts</em> is a widget-ready theme designed for WordPress 2.0.</p>
<p>This simple yet attractive holiday theme is designed to be versatile, easy to customize and SE-friendly. It's an ideal template for niche Christmas sites built with WordPress, affiliate bloggers or anyone that just wants to celebrate the <em>Season of Giving</em>.</p>
<p><em>Christmas Gifts</em> uses valid XHTML &amp; CSS and has been tested in multiple browsers including Internet Explorer, Firefox and Opera.</p>
<p>Source: http://wpthemes.amazing-christmas-ideas.com/cg/</p></blockquote>
<h4>3. <a href="http://wpthemes.amazing-christmas-ideas.com/vc/" target="_blank">Vermilion Christmas Theme<br />
</a></h4>
<p style="text-align: center"><a href="http://wpthemes.amazing-christmas-ideas.com/vc/" target="_blank"><img src="http://www.binh.name/files/2007/12/vermilion-christmas.png" alt="Vermilion Christmas Theme" /></a></p>
<p>From the author:</p>
<blockquote><p>Vermilion Christmas is a widget-ready theme designed for WordPress 2.0.</p>
<p>With it's attractive Christmas design and SE-friendly structure, it's an excellent solution for bloggers and webmasters in need of a Christmas WordPress theme.</p>
<p>Vermilion Christmas uses valid XHTML &amp; CSS and has been tested in multiple browsers including Internet Explorer, Firefox and Opera.</p>
<p>Source: http://wpthemes.amazing-christmas-ideas.com/vc/</p></blockquote>
<h4>4. <a title="Permanent Link to WordPress Theme - Merry Christmas" href="http://www.blogohblog.com/wordpress-theme-merry-christmas/" target="_blank">Merry Christmas WordPress Theme</a></h4>
<p style="text-align: center"><a href="http://www.blogohblog.com/wordpress-theme-merry-christmas/" target="_blank"><img src="http://www.binh.name/files/2007/12/merry-christmas-wordpress-theme.png" alt="Merry Christmas WordPress Theme" /></a></p>
<p>From the author:</p>
<blockquote><p>Please welcome the all new WordPress theme designed specially for the eve of Christmas! I am launching this theme at this time so that all you bloggers can tweak it according to your blog by the time Christmas arrives… It has some nifty cool effects for you to check out <img src='http://www.binh.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .. and don’t forget to check the upcoming New Year Theme!!</p>
<p>Source: http://www.blogohblog.com/wordpress-theme-merry-christmas/</p></blockquote>
<h4>5. <a href="http://www.acosmin.com/new-wordpress-theme-for-christmas/" target="_blank">Cosmin's WordPress Theme for Christmas</a></h4>
<p style="text-align: center"><a href="http://www.acosmin.com/new-wordpress-theme-for-christmas/" target="_blank"><img src="http://www.binh.name/files/2007/12/tmzwinter-wordpress-theme.png" alt="Cosmin’s WordPress Theme for Christmas" /></a></p>
<p>From the author: This wp theme has 3 columns, based on three colors red, green and white and of course, AdSense blends well in those two ad spaces." Source: http://www.acosmin.com/new-wordpress-theme-for-christmas/</p>
<h4>6. <a href="http://bobek.co.uk/blog/?p=16" target="_blank">Christmas Bells</a></h4>
<p style="text-align: center"><a href="http://bobek.co.uk/blog/?p=16" target="_blank"><img src="http://www.bobek.co.uk/images/demo13.jpg" alt="Nice 2 columns Christmas bells WordPress theme which will warm your heart in this time of year." width="300" height="300" /></a></p>
<p>Nice 2 columns Christmas bells WordPress theme which will warm your heart in this time of year.</p>
<h4>7. <a href="http://www.thatsprofound.com/out/Free_Christmas_Wordpress_Theme_Christmas_Gift_3-Column" target="_blank">Christmas Gift (3-Column)</a></h4>
<p style="text-align: center"><a href="http://www.thatsprofound.com/out/Free_Christmas_Wordpress_Theme_Christmas_Gift_3-Column" target="_blank"><img src="http://www.binh.name/files/2007/12/christmas-gift-worpdress-theme.png" alt="" /></a></p>
<p>Give Christmas look on your website, well designed unique yet elegant Christmas WordPress theme. Impress your readers with Christmas celebration on your weblog.</p>
<h3>Why did I write this post?</h3>
<p>Note: <a href="#whatsnext">Skip this section</a> if you are not a blogger.</p>
<p>To date, my blog post <a title="Permanent Link to WordPress Theme for Christmas" href="http://www.binh.name/2007/11/21/wordpress-theme-for-christmas/" target="_blank">WordPress Theme for Christmas</a> got from Google:</p>
<div style="overflow: auto; height: 100px;">
<ul>
<li>wordpress christmas theme - 24 hits</li>
<li>wordpress christmas themes - 6 hits</li>
<li>christmas wordpress themes - 4 hits</li>
<li>christmas theme wordpress  - 3 hits</li>
<li>christmas theme names - 2 hits</li>
<li>christmas themes 2007 - 2 hits</li>
</ul>
<p>And all the following keywords got 1 hit each:</p>
<ul>
<li>"wordpress theme" +christmas</li>
<li>christmas theme blog</li>
<li>chirstmas themes for wordpress</li>
<li>chirstmas themes wordpress</li>
<li>chirstmas wordpress theme</li>
<li>themes wordpress chirstmas</li>
<li>wordpress "chirstmas theme"</li>
<li>wordpress theme chirstmas</li>
<li>wordpress themes chirstmas</li>
<li>wordpress themes chirstmas</li>
<li>wordpress themes xmas</li>
<li>wordpress xmas theme</li>
<li>wordpress xmas themes</li>
</ul>
</div>
<p>Unfortunately the bounce rate was somewhere near 100%, so I guess the post was not relevant. I should have included a download links.</p>
<p><em>Update 23 Dec 2007:</em></p>
<p>This page continuously have very stable stream of incoming traffic from Google, and here are the latest keyword counts:</p>
<h3>What's next<a name="whatsnext">?</a></h3>
<p>Merry Christmas and Happy New Year! Please spare sometimes to give me feedback via the Comment form.<br />
<em>Update 23 Dec 2007:</em></p>
<div style="overflow: auto; height: 100px;">
<table border="0">
<thead>
<th></th>
<th>Keywords<strong></strong></th>
<th>Visits</th>
<th>Pages/Visit</th>
<tr>
<td>1.</td>
<td>wordpress christmas theme</td>
<td>68</td>
<td>2.22</td>
</tr>
<tr>
<td>2.</td>
<td>wordpress christmas themes</td>
<td>23</td>
<td>1.96</td>
</tr>
<tr>
<td>3.</td>
<td>christmas themes 2007</td>
<td>19</td>
<td>1.63</td>
</tr>
<tr>
<td>4.</td>
<td>christmas theme wordpress</td>
<td>11</td>
<td>3.73</td>
</tr>
<tr>
<td>5.</td>
<td>christmas wordpress themes</td>
<td>10</td>
<td>2.20</td>
</tr>
<tr>
<td>6.</td>
<td>christmas themes wordpress</td>
<td>8</td>
<td>2.75</td>
</tr>
<tr>
<td>7.</td>
<td>christmas wordpress theme</td>
<td>6</td>
<td>3.33</td>
</tr>
<tr>
<td>8.</td>
<td>wordpress themes christmas</td>
<td>4</td>
<td>2.00</td>
</tr>
<tr>
<td>9.</td>
<td>christmas theme names</td>
<td>3</td>
<td>1.00</td>
</tr>
<tr>
<td>10.</td>
<td>free wordpress christmas themes</td>
<td>3</td>
<td>6.33</td>
</tr>
<tr>
<td>11.</td>
<td>"christmas theme blog"</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>12.</td>
<td>christmas css free</td>
<td>2</td>
<td>1.50</td>
</tr>
<tr>
<td>13.</td>
<td>christmas theme 2007</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>14.</td>
<td>christmas theme my blog post</td>
<td>2</td>
<td>6.50</td>
</tr>
<tr>
<td>15.</td>
<td>christmas theme wp</td>
<td>2</td>
<td>3.50</td>
</tr>
<tr>
<td>16.</td>
<td>christmas themed names</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>17.</td>
<td>christmas themes for wordpress</td>
<td>2</td>
<td>4.00</td>
</tr>
<tr>
<td>18.</td>
<td>christmas wordpress</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>19.</td>
<td>free christmas themes 2007</td>
<td>2</td>
<td>2.00</td>
</tr>
<tr>
<td>20.</td>
<td>free christmas wordpress theme</td>
<td>2</td>
<td>1.50</td>
</tr>
<tr>
<td>21.</td>
<td>theme wordpress christmas</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>22.</td>
<td>themes wordpress christmas</td>
<td>2</td>
<td>1.50</td>
</tr>
<tr>
<td>23.</td>
<td>windows christmas theme 2007</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>24.</td>
<td>wordpress christmas</td>
<td>2</td>
<td>2.50</td>
</tr>
<tr>
<td>25.</td>
<td>wordpress free christmas theme</td>
<td>2</td>
<td>5.00</td>
</tr>
<tr>
<td>26.</td>
<td>wordpress theme christmas</td>
<td>2</td>
<td>1.00</td>
</tr>
<tr>
<td>27.</td>
<td>"christmas wordpress themes"</td>
<td>1</td>
<td>5.00</td>
</tr>
<tr>
<td>28.</td>
<td>"wordpress theme" +christmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>29.</td>
<td>+wordpress+christmas+theme</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>30.</td>
<td>7 christmas wp themes</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>31.</td>
<td>adsense christmas theme units</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>32.</td>
<td>christmas 2007 theme free</td>
<td>1</td>
<td>4.00</td>
</tr>
<tr>
<td>33.</td>
<td>christmas days blogger theme design disease</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>34.</td>
<td>christmas dot to dot free</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>35.</td>
<td>christmas opera theme</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>36.</td>
<td>christmas se themes</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>37.</td>
<td>christmas theme blog</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>38.</td>
<td>christmas theme css</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>39.</td>
<td>christmas theme for wordpress</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>40.</td>
<td>christmas theme name</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>41.</td>
<td>christmas theme se</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>42.</td>
<td>christmas theme table names</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>43.</td>
<td>christmas themes +wordpress</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>44.</td>
<td>christmas themes 1 click</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>45.</td>
<td>christmas themes and wordpress</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>46.</td>
<td>christmas themes blog</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>47.</td>
<td>christmas themes for 2007</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>48.</td>
<td>christmas themes for blog</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>49.</td>
<td>christmas themes for websites</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>50.</td>
<td>christmas themes names</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>51.</td>
<td>christmas wordpress themes 2.3</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>52.</td>
<td>dot names in christmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>53.</td>
<td>firefox christmas themes</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>54.</td>
<td>free christmas templates for wordpress</td>
<td>1</td>
<td>10.00</td>
</tr>
<tr>
<td>55.</td>
<td>free christmas theme</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>56.</td>
<td>free christmas theme for blogspot</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>57.</td>
<td>free christmas themes</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>58.</td>
<td>free christmas widgets</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>59.</td>
<td>free merry christmas theme blog</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>60.</td>
<td>i google christmas theme</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>61.</td>
<td>ie christmas themes</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>62.</td>
<td>list of christmas themes</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>63.</td>
<td>names of christmas operas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>64.</td>
<td>opera christmas theme</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>65.</td>
<td>response journal christmas theme</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>66.</td>
<td>se christmas theme</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>67.</td>
<td>theme christmas for blog</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>68.</td>
<td>theme names for christmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>69.</td>
<td>themes christmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>70.</td>
<td>themes christmas blogs</td>
<td>1</td>
<td>5.00</td>
</tr>
<tr>
<td>71.</td>
<td>themes christmas for blog</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>72.</td>
<td>word press christmas theme</td>
<td>1</td>
<td>4.00</td>
</tr>
<tr>
<td>73.</td>
<td>wordpress "christmas theme"</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>74.</td>
<td>wordpress +christmas theme</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>75.</td>
<td>wordpress christmas adsense</td>
<td>1</td>
<td>6.00</td>
</tr>
<tr>
<td>76.</td>
<td>wordpress christmas effect</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>77.</td>
<td>wordpress christmas theme free</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>78.</td>
<td>wordpress christmas widget</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>79.</td>
<td>wordpress christmass theme</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>80.</td>
<td>wordpress+christmas theme</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>81.</td>
<td>wordpress-theme-merry-christmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>82.</td>
<td>wordpress: christmas theme</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>83.</td>
<td>wp christmas themes</td>
<td>1</td>
<td>4.00</td>
</tr>
<tr>
<td>84.</td>
<td>wp theme +christmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>1.</td>
<td>wordpress xmas theme</td>
<td>4</td>
<td>2.50</td>
</tr>
<tr>
<td>2.</td>
<td>wordpress xmas themes</td>
<td>3</td>
<td>3.33</td>
</tr>
<tr>
<td>3.</td>
<td>"wordpress"+"xmas theme"</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>4.</td>
<td>free xhtml xmas design</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>5.</td>
<td>theme xmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>6.</td>
<td>themes xmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>7.</td>
<td>wordpress theme xmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>8.</td>
<td>wordpress themes xmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>9.</td>
<td>xmas effect on wordpress</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>10.</td>
<td>xmas wordpress</td>
<td>1</td>
<td>9.00</td>
</tr>
<tr>
<td>1.</td>
<td>wordpress xmas theme</td>
<td>4</td>
<td>2.50</td>
</tr>
<tr>
<td>2.</td>
<td>wordpress xmas themes</td>
<td>3</td>
<td>3.33</td>
</tr>
<tr>
<td>3.</td>
<td>"wordpress"+"xmas theme"</td>
<td>1</td>
<td>3.00</td>
</tr>
<tr>
<td>4.</td>
<td>free xhtml xmas design</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>5.</td>
<td>theme xmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>6.</td>
<td>themes xmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>7.</td>
<td>wordpress theme xmas</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>8.</td>
<td>wordpress themes xmas</td>
<td>1</td>
<td>2.00</td>
</tr>
<tr>
<td>9.</td>
<td>xmas effect on wordpress</td>
<td>1</td>
<td>1.00</td>
</tr>
<tr>
<td>10.</td>
<td>xmas wordpress</td>
<td>1</td>
<td>9.00</td>
</tr>
</thead>
</table>
</div>
<p>Do you have a Christmas theme to share? You can link to this article to get a trackback link, or leave a comment here with a link to your theme and I will add it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/7-free-wordpress-christmas-themes-2007/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Fixing Post Teaser Plugin Bug for WP 2.3.1</title>
		<link>http://www.binh.name/fixing-post-teaser-plugin-bug-for-wp-231/</link>
		<comments>http://www.binh.name/fixing-post-teaser-plugin-bug-for-wp-231/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 16:15:03 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://www.binh.name/?p=39</guid>
		<description><![CDATA[Have you ever had problem with Post Teaser plugin for WordPress? I am using it and I found a bug. So I fixed the bug and now you can download it right from this page. I name it "Post Teaser 2" just so It won't mess up with the original one. It's now available for [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had problem with <strong><a href="http://wordpress.org/extend/plugins/post-teaser/" title="Visit plugin homepage">Post Teaser</a></strong> plugin for WordPress? I am using it and I found a bug. So I fixed the bug and now you can download it right from this page. I name it "Post Teaser 2" just so It won't mess up with the original one.</p>
<p>It's now available for download from this page: <a href="http://www.binh.name/?attachment_id=43" rel="attachment wp-att-43" title="Post Teaser 2 - An Essential WordPress Plugin">Post Teaser 2 - An Essential WordPress Plugin</a>.</p>
<h2>The Bug</h2>
<p>When I click the Update Options button on the Manage Post Teaser page, I got this: "Cannot load post-teaser.php." as shown in the snapshot:</p>
<p align="center"><img src="http://binh.name/files/2007/11/post-teaser-bug.png" alt="Post Teaser Bug" /></p>
<h2>Locating the bug</h2>
<p>It's annoying abit, but it's also easy to fix. I notice the following URL after the button is clicked:</p>
<blockquote><p>http://binh.name/wp/wp-admin/options-general.php?page=post-teaser.php&amp;saved=true</p></blockquote>
<p>And this is the URL before the button is clicked:</p>
<blockquote><p>http://binh.name/wp/wp-admin/options-general.php?page=post-teaser/post-teaser.php</p></blockquote>
<p>The different here is noticable.</p>
<ul>
<li>The failed query is: post-teaser.php&amp;saved=true</li>
<li>The unfailed query is: post-teaser/post-teaser.php</li>
</ul>
<p>So the correct query for saving the options should be: <strong>post-teaser/post-teaser.php&amp;saved=true</strong></p>
<h2>Debugging it</h2>
<p><strong>Open </strong>file "post-teaser/post-teaser.php" in the Plugin Editor (found in the Plugins page in Admin panel).</p>
<p><strong>Search </strong>for the string "post-teaser.php&amp;saved=true" in the file , and found the following lines:</p>
<ul>
<li> 101: header('Location: ' . get_settings('siteurl') . '/wp-admin/options-general.php?page=post-teaser.php&amp;saved=true');</li>
<li>103: 				header('Location: ' . get_settings('siteurl') . '/wp-admin/options-general.php?page=post-teaser.php&amp;saved=true');</li>
</ul>
<p><strong>Replace </strong>"post-teaser.php&amp;saved=true" with "post-teaser/post-teaser.php&amp;saved=true" and we get:</p>
<ul>
<li>101: header('Location: ' . get_settings('siteurl') . '/wp-admin/options-general.php?page=post-teaser/post-teaser.php&amp;saved=true');</li>
<li>103: 				header('Location: ' . get_settings('siteurl') . '/wp-admin/options-general.php?page=post-teaser/post-teaser.php&amp;saved=true');</li>
</ul>
<p><strong>Alternatively</strong> you could edit the plugin file locally then upload it.</p>
<p>A <strong>screenshot</strong> where it is located:</p>
<p><a href="http://www.binh.name/?attachment_id=41" rel="attachment wp-att-41" title="Edit Post Teaser Code File"></a></p>
<p style="text-align: center"><a href="http://www.binh.name/?attachment_id=41" rel="attachment wp-att-41" title="Edit Post Teaser Code File"><img src="http://binh.name/files/2007/11/post-teaser-bug-edit.thumbnail.png" alt="Edit Post Teaser Code File" /></a></p>
<p><strong>Problem Fixed:</strong></p>
<p style="text-align: center"><a href="http://www.binh.name/?attachment_id=42" rel="attachment wp-att-42" title="Post Teaser Bug Fixed"><img src="http://binh.name/files/2007/11/post-teaser-bug-fixed.png" alt="Post Teaser Bug Fixed" /></a></p>
<h2>Conclusion</h2>
<p>The author of this plugin actually wrote it up to version 2.3 of WordPress. Or maybe because he just didn't mean to have the user keep the post-teaser.php file under the post-teaser folder. Either way, I hope when writing the plugin and packaging it the author should consider the end user first.</p>
<p>I, a web developer still didn't realise I had to extract the php file into the plugins folder instead of the whole folder which contains the php file? Most of the plugins come packaged with readme.txt, plugin-name.pot, etc. How does the user know what to do without reading pages of documentation? We should make it simple for the end users. KISS principle is appreciated.</p>
<p>Since this wonderful plugin has a public license I would like to continue supporting it. If you have any problem please feel free to leave a comment on this page.  And... sorry I couldn't fix the translation files. So if you are using another language, please bear not having it, or modify the original file as directed by this debugging tutorial.</p>
<p>You can directly <a href="http://binh.name/files/2007/11/post-teaser-2.zip">download Post Teaser 2 now</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/fixing-post-teaser-plugin-bug-for-wp-231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Dangerous Permalink Redirect Bugs</title>
		<link>http://www.binh.name/fixing-dangerous-permalink-redirect-bugs/</link>
		<comments>http://www.binh.name/fixing-dangerous-permalink-redirect-bugs/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 19:37:32 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.binh.name/?p=35</guid>
		<description><![CDATA[Since I have more than one occasion encounter bug with Permalink Redirect, I recommend people wait for new version of this plug-in. The Bugs The following are the bugs: Redirect "/feed" URI to "/feed/" using 302 redirect. Ignoring the "/%postname%" rule having no trailing slash. Redirect "/?paged=x" to "/page/x/" (where x is paging number) ingoring [...]]]></description>
			<content:encoded><![CDATA[<p>Since I have more than one occasion encounter bug with <strong><a href="http://fucoder.com/code/permalink-redirect/" title="Permalink Redirect WordPress Plugin">Permalink Redirect</a></strong>, I recommend people wait for new version of this plug-in.</p>
<h2>The Bugs</h2>
<p>The following are the bugs:</p>
<ol>
<li>Redirect "/feed" URI to "/feed/" using 302 redirect. Ignoring the "/%postname%" rule having no trailing slash.</li>
<li>Redirect "/?paged=x" to "/page/x/" (where x is paging number) ingoring the fact ugly default URL is used, causing 404 message when paging.</li>
</ol>
<p>There is no doubt about these bugs, because I test it by enabling and disabling Permalink Redirect plugin.</p>
<h2>Fixing the bugs</h2>
<p>Indeed being a programmer gives me some advantages, I could fix the bugs on the fly.</p>
<h3>Feed redirect trailing slash</h3>
<p>For the /feed to /feed/ redirect problem, I found these lines:</p>
<blockquote><p>208        if (is_feed()) {<br />
209            $link = trailingslashit($link) . 'feed/';<br />
210        }</p></blockquote>
<p>Solution:</p>
<ol>
<li>If want no trailing slash, remove the "/" on line 209.</li>
<li>If it's WordPress 2.3.1+ simply remove the 3 lines because it's built-in.</li>
<li>If you don't want to touch code, include the  following in the Options &gt; Permalink Redirect &gt; Paths to be skipped: "<strong>.+/feed</strong>.*" (without the quotes)</li>
</ol>
<h3>Page redirect ignoring permalink rule</h3>
<p>For the /?page=x to /paged/x/ problem, I found this line:</p>
<blockquote><p>204    if ($paged)<br />
205        $link = trailingslashit($link) . "page/$paged/";</p></blockquote>
<p>Solution:</p>
<ol>
<li>If  WordPress 2.3.1+, remove the lines because it's done better.</li>
<li>If you don't want to touch code, include the  following in the Options &gt; Permalink Redirect &gt; Paths to be skipped: "<strong>.+/?paged=.*</strong>" (without the quotes)</li>
</ol>
<h2>Conclusion</h2>
<p>Even being buggy, and not recommended by WordPress 2.3.1 which claim having internal redirect, Permalink Redirect still provide some benefit that built-in redirect doesn't offer, such as:</p>
<ol>
<li>Redirect permalink from old structure to new structure</li>
<li>Redirect broken, or wrong URL, providing the post id is correct, or enough matching words in post slug.</li>
<li>Redirect feed url from "/?feed=rss" to "/feed" or "/feed/" depending your customization.</li>
</ol>
<p>This plug-in is indeed getting a lot of my attention. I have more liking for it than the bult-in redirect. So, whenever I have time I will investigate deeper into the code and optimize it for better usage.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/fixing-dangerous-permalink-redirect-bugs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Glance at JustSimple WordPress Theme</title>
		<link>http://www.binh.name/a-glance-at-justsimple-wordpress-theme/</link>
		<comments>http://www.binh.name/a-glance-at-justsimple-wordpress-theme/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 16:22:04 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://binh.name/blog/16</guid>
		<description><![CDATA[I just stumbled on a WordPress theme called JustSimple, and I could say from the first look: "I will use it". Good things about JustSimple This theme, regardless of having only 2 images, 1 for background, and 1 for the RSS feeds, look so elegant and easy on the eyes. As the name suggests, JustSimple [...]]]></description>
			<content:encoded><![CDATA[<p>I just stumbled on a WordPress theme called <a href="http://www.wpthemespot.com/themes/justsimple/" title="JustSimple theme homepage" target="_blank">JustSimple</a>, and I could say from the first look: "I will use it".</p>
<h3>Good things about JustSimple</h3>
<p>This theme, regardless of having only 2 images, 1 for background, and 1 for the RSS feeds, look so elegant and easy on the eyes. As the name suggests, JustSimple is a simple lightweight WordPress theme.</p>
<p>Take a look at the screen-shot below:</p>
<p style="text-align: center"><img src="http://binh.name/files/2007/11/justsimple-theme.jpg" alt="JustSimple" border="0" /></p>
<p align="left">This is exactly what I wanted. A simple but good looking theme for fast loading.</p>
<h3>Some Problems with JustSimple</h3>
<p>This is 800px width on a 1024px wide screen. There is one problem in layout, the whole container is fluid. The smaller the screen, the more the container get narrowed and the height of the page increase. This should be fixed otherwise it look bad when the browser window is resized. Like this:</p>
<p style="text-align: center"><img src="http://binh.name/files/2007/11/justsimple-theme-got-narrowed.jpg" alt="JustSimple Theme got narrowed" /></p>
<p>After all the look and feel, I liked it and I tried it, here is a screen shot of my homepage when using this theme before any modification:</p>
<p style="text-align: center"><img src="http://binh.name/files/2007/11/justsimple-on-binhname.jpg" alt="JustSimple Theme on binh.name" /></p>
<p>Beside the layout issue the theme also got a bug on it right on the Index page:</p>
<blockquote><p>Warning: array_key_exists() [function.array-key-exists]: The first argument should be either a string or an integer in D:\Program Files\AppServ\www\binh.name\wp\wp-includes\category-template.php on line 176</p></blockquote>
<p align="left">The bug was actually found in the index.php file, on line 19. It can be easily fixed by inserting one more condition in the if statement:</p>
<ul>
<li>Old: &lt;?php if ( in_category($AsideId) &amp;&amp; !is_single() ) : ?&gt;</li>
<li>New: &lt;?php if ( <strong>$AsideId &amp;&amp;</strong> in_category($AsideId) &amp;&amp; !is_single() ) : ?&gt;</li>
</ul>
<p>Reason (warning, developer stuff) The $AsideId is null causing the in_category call passing a null argument, which throw the exception.</p>
<h3>Conclusion</h3>
<p>This theme design absolutely exactly perfectly specially is what I really wanted for so long time. You should expect this theme up and running for my Binh's Creative Blog soon. I have spent quite sometime on tweaking it. There still are some more things to do to make it more SEO friendly.</p>
<p align="left">Stay tuned to see when it is implemented and how it look on my site. When completed I will also include a link to download my version of this theme for your own use. If you have some review on this theme, please feel free to post a comment. I will put some do-follow plug-in soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/a-glance-at-justsimple-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I Started Blogging with WordPress</title>
		<link>http://www.binh.name/i-started-blogging-with-wordpress/</link>
		<comments>http://www.binh.name/i-started-blogging-with-wordpress/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 19:46:47 +0000</pubDate>
		<dc:creator>Bình</dc:creator>
				<category><![CDATA[WP]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://binh.name/blog/i-started-blogging-with-wordpress</guid>
		<description><![CDATA[Yes, I have chosen WordPress for my blog site. This is a temporary decision. I'm still choosing between WordPress and Drupal. I have been collecting information on the various most popular Content Management System (CMS) like Joomla, Mambo, Drupal, XOOPS, WordPress and a few more. Why I chose WordPress? WordPress may have more limitation than [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I have chosen WordPress for my blog site.</p>
<p>This is a temporary decision. I'm still choosing between <a href="http://wordpress.org" title="WordPress Blogging CMS" target="_blank">WordPress</a> and <a href="http://drupal.org" title="Drupal CMS" target="_blank">Drupal</a>. I have been collecting information on the various most popular Content Management System (CMS) like <a href="http://joomla.org" title="Jooma CMS" target="_blank">Joomla</a>, <a href="http://mambo.org" title="Mambo CMS">Mambo</a>, Drupal, <a href="http://xoops.org" title="XOOPS CMS" target="_blank">XOOPS</a>, WordPress and a few more.  <span id="more-12"></span></p>
<h3>Why I chose WordPress?</h3>
<p>WordPress may have more limitation than a fully tweaked Drupal site, but for timing reason I have to use it.</p>
<p>The best thing about WordPress that is better than Drupal is that simply work out of the box. I just needed to download a few nice themes and few useful plug-ins and here it goes, running like a pro.</p>
<p>The next best thing about WordPress is that, not because it have so many plug-ins and themes, but the themes are extremely nicer and those expand are easier to find. I especially like the easy-to-view theme snapshots.</p>
<p>I will discuss more about the different CMS choices in another time.</p>
<h3>Why not wait for a more stable solution</h3>
<p>Basically, I have spent too long as I can recall. It's been about 2 months since I started looking into the first CMS, which was <a href="http://phpnuke.org" title="phpNuke CMS" target="_blank">php-Nuke </a>(the thing that tell me what a CMS is like).</p>
<p>Since then, I have been writing my blogs off line in OneNote and keep the files on my computers. I always are waiting to publish those near to a thousand pages I have written. Those written pages are ranging from my life issues to making money and a lot of ideas on self development. I kept on writing while learning the things that I haven't studied at university.</p>
<h3>The call to start</h3>
<p>The final moment when I started "Oh well! Let's do it instead of day-dreaming about it. Make it live an change it later". I made the decision because I read the Writing Tips on <a href="http://codex.wordpress.org/Writing_Posts" title="WordPress's Writing Tips" target="_blank">WordPress 's Writing Posts</a> guide. The article suggest that people should '<strong>worry about blog design later</strong>':</p>
<blockquote><p>Blog design matters, but only to an extent. Don’t give up on blogging just because the design isn’t coming up as you’ll like it it to be. Sooner or later, you’ll get around the design problems with ease. But continue writing. Content is what attracts your readers, not just the look of your blog.</p></blockquote>
<blockquote><p>(Source http://codex.wordpress.org/Writing_Posts)</p></blockquote>
<p>But still, I'm seriously considering the Drupal as the final solution. I have seen many high-profile Durpal Powered Sites and I really like it. A few things that don't satisfy me are:</p>
<ul>
<li>URL alias management,</li>
<li>Multiple subdomains / domains duplicated content issue,</li>
<li>URL redirect to alias,</li>
<li>Lack of nice themes and theme snapshots.</li>
</ul>
<p>Since it's a long topic, I will create a post discussing about Drupal later on.</p>
<p>Do you like WordPress? Should I keep it permanently or should I change?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binh.name/i-started-blogging-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.570 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-05 23:37:07 -->
<!-- Compression = gzip -->
