<?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>Make Tech Easier&#187; WordPress</title>
	<atom:link href="http://maketecheasier.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sun, 12 Feb 2012 15:58:24 +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>How To Add SSL Security To Your WordPress Blog</title>
		<link>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10</link>
		<comments>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10#comments</comments>
		<pubDate>Sat, 10 Dec 2011 15:58:36 +0000</pubDate>
		<dc:creator>Mahesh Makvana</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=42148</guid>
		<description><![CDATA[The most concerning thing on Internet is the Security. Whether you are using Internet from home or working at an office, there is always the constant threat of hackers lurking around, trying to fish confidential information out from you. In WordPress, this confidential information is your administrator username and password. Once the hackers get hold [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;title=How+To+Add+SSL+Security+To+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10">How To Add SSL Security To Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/WordPress-SSL-Main.jpg" alt="WordPress-SSL-Main" title="WordPress-SSL-Main" width="200" height="200" class="alignleft size-full wp-image-42501" />The most concerning thing on Internet is the Security. Whether you are using Internet from home or working at an office, there is always the constant threat of hackers lurking around, trying to fish confidential information out from you. In WordPress, this confidential information is your administrator username and password. Once the hackers get hold of your login credential, they will be able to do what they want with your site, steal your members info (if you are using WordPress as a community site) and possibly bring down the whole site . </p>
<p>We have discussed <a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">plenty of tricks to secure WordPress</a>, and enabling SSL encryption for your login session is yet another useful way to secure your blog.<br />
<span id="more-42148"></span><br />
If you are not aware, while using SSL encryption, all your data are encrypted before they are transmitted over the web. The encrypted data format data format makes it very difficult to be read by the other users. </p>
<p>To enable the SSL Security to your WordPress blog, you will need to have a SSL Certificate (consult your web host if you don&#8217;t have one) and then you can follow the below procedure to make it work with your blog. </p>
<ul>
<li>At first, Open your site directory either using cPanel File Manager or the FTP. I would recommend to use the File Manager instead of FTP.</li>
<li>Once you reach the files directory of your WordPress installation, open the <em>wp-config.php</em> file.</li>
<li>This is the WordPress configuration files and it is the most important in the whole WordPress system. After the file is opened, add the below code and save the file. You can add the code anywhere in the file, there&#8217;s no certain place for it.</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* Enable SSL Encryption */</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span>‘FORCE_SSL_LOGIN’<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span>‘FORCE_SSL_ADMIN’<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<ul>
<li>From then on, your WordPress site Admin area will always load with the SSL Encryption. If your site domain is <em><strong>http://</strong>www.mydomain.com</em>, it will load the admin area of the same with <em><strong>https://</strong>www.mydomain.com/wp-admin</em>.</li>
</ul>
<p>There are so many advantages of using the SSL for your site. The above process will force WordPress to use SSL encryption for the Administration area. It is not necessary to enable SSL encryption for the frontend (unless you are running a blog shop) since all the confidential information, like the Username and Passwords are used only in the Admin area, not anywhere else.</p>
<p>Image Credit: <a href="http://reevoo.com" target="_blank" rel="nofollow">Reevoo.com</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10&amp;title=How+To+Add+SSL+Security+To+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10">How To Add SSL Security To Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/add-ssl-security-to-wordpress/2011/12/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Establish Authorship For Your Posts In WordPress</title>
		<link>http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08</link>
		<comments>http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08#comments</comments>
		<pubDate>Sat, 08 Oct 2011 14:58:19 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[authorship]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=39493</guid>
		<description><![CDATA[Yesterday, I show you how you can establish authorship for your site/content so that your Google profile picture will appear beneath the search results. However, in WordPress, it may not be as easy as it seems. WordPress is using a template system to display your content, so adding the rel=&#8221;author&#8221; tag will require some tweaking [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08&amp;title=How+to+Establish+Authorship+For+Your+Posts+In+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08">How to Establish Authorship For Your Posts In WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/wordpress-logo.jpg" alt="wordpress-logo" title="wordpress-logo" width="180" height="180" class="alignleft size-full wp-image-39661" />Yesterday, I show you how you can establish authorship for your site/content so that your <a href="http://maketecheasier.com/get-google-to-show-profile-pictures-in-search-result/2011/10/07" title="show profile picture in search results">Google profile picture will appear beneath the search results</a>. However, in WordPress, it may not be as easy as it seems. WordPress is using a template system to display your content, so adding the <em>rel=&#8221;author&#8221;</em> tag will require some tweaking of the theme. </p>
<p>Here&#8217;s how you can establish authorship in WordPress.<br />
<span id="more-39493"></span><br />
<strong>Note</strong>: <em>The following solution is just one of the many ways to establish the authorship of your content. If you have a better, easier way, feel free to use it.</em></p>
<h2>For single author blog</h2>
<p>1. Make sure you have an About page that describes who you are and what your blog is about. At the end of the content (of the About page), insert the following link:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a href=&quot;http://your-google-profile-url&quot; rel=&quot;me&quot;&gt;Follow me on Google +&lt;/a&gt;</pre></div></div>

<p>Remember to replace the <code>http://your-google-profile-url</code> with your Google Profile URL. </p>
<p><strong>Note</strong>: The Google Profile URL is of the format: <em>https://plus.google.com/1234567890987654321</em>.</p>
<p>Next, go to the theme editor and open your <code>functions.php</code> file. Insert the following code at the end of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'add_author_link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> add_author_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>    	
		<span style="color: #000088;">$content</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&lt;p&gt;This article is written by &lt;a href=&quot;http://link-to-your-about-page&quot; rel=&quot;author&quot;&gt;'</span><span style="color: #339933;">.</span>get_the_author_meta<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;&lt;/p&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>	
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Save the changes. </p>
<p>What the above code does is to insert a sentence at the end of your article with a link to your About page.</p>
<h2>For multi-authors blog</h2>
<p>1. Get all your authors to update the Jabber/Google Talk field in the Profile section with their Google Profile URL. </p>
<p>2. Open the <code>functions.php</code> file and insert the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">add_filter<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'the_content'</span>, <span style="color: #ff0000;">'add_author_link'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">function</span> add_author_link<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$content</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>	<span style="color: #000000; font-weight: bold;">if</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>is_single<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>    	
	<span style="color: #7a0874; font-weight: bold;">&#123;</span>	<span style="color: #007800;">$content</span> .= <span style="color: #ff0000;">'&lt;p&gt;Follow this author at &lt;a href=&quot;'</span>.get_the_author_meta<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'jabber'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>.<span style="color: #ff0000;">'&quot; rel=&quot;author&quot;&gt;Google+&lt;/a&gt;&lt;/p&gt;'</span>;
	<span style="color: #7a0874; font-weight: bold;">&#125;</span>
	<span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #007800;">$content</span>;	
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>The above code will grab the Google Profile URL from the author&#8217;s Jabber/Gtalk field and insert the link to the end of the content.</p>
<p>That&#8217;s it. </p>
<p>It will take 1-2 weeks for Google to show your profile picture in the search results. Meanwhile you can use the <a href="http://www.google.com/webmasters/tools/richsnippets">Rich Snippet Test Tool</a> to see how your page looks like in the search results.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08&amp;title=How+to+Establish+Authorship+For+Your+Posts+In+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08">How to Establish Authorship For Your Posts In WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/establish-authorship-for-post-in-wordpress/2011/10/08/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Change The Font Of WordPress 3.2 HTML Editor [Quick Tips]</title>
		<link>http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18</link>
		<comments>http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18#comments</comments>
		<pubDate>Mon, 18 Jul 2011 22:00:57 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[text editor]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=35770</guid>
		<description><![CDATA[If you are using WordPress and have recently upgraded to the latest 3.2.x version, you will notice that the font for the HTML editor has changed. In most WordPress upgrade, changes are good, but in this case, the changed font is not web friendly and is straining to the eyes. One of the way to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18&amp;title=How+to+Change+The+Font+Of+WordPress+3.2+HTML+Editor+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18">How to Change The Font Of WordPress 3.2 HTML Editor [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you are using WordPress and have recently upgraded to the latest 3.2.x version, you will notice that the font for the HTML editor has changed. In most WordPress upgrade, changes are good, but in this case, the changed font is not web friendly and is straining to the eyes.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-new-editor-font.png" alt="wp-new-editor-font" title="wp-new-editor-font" width="600" height="134" class="aligncenter size-full wp-image-35802" /></p>
<p>One of the way to change it is to directly edit the <em>wp-admin.css</em> file under the &#8220;<em>wp-admin -> css</em>&#8221; folder. This is not a good solution because the next time you upgrade your WordPress, your files will be overwritten.<br />
<span id="more-35770"></span><br />
The best way is to insert a small function to your <em>functions.php</em>.</p>
<p>Open your <code>functions.php</code> file in your Themes folder.</p>
<p>Add the following code to the end of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action( 'admin_head-post.php', 'fix_html_editor_font' );
add_action( 'admin_head-post-new.php', 'fix_html_editor_font' );
&nbsp;
function fix_html_editor_font() { ?&gt;
    &lt;style type=&quot;text/css&quot;&gt;
        #editorcontainer #content, #wp_mce_fullscreen {
            font-family: Tahoma,Verdana,Arial,Helvetica;
        }
    &lt;/style&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span></pre></div></div>

<p>You can change the font-family to the one you like. I personally prefer the Tahoma and Verdana font family. </p>
<p>Save and upload the functions.php file back to the server. This is the result:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-restored-font.png" alt="wp-restored-font" title="wp-restored-font" width="600" height="240" class="aligncenter size-full wp-image-35804" /></p>
<p>That&#8217;s it. </p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18&amp;title=How+to+Change+The+Font+Of+WordPress+3.2+HTML+Editor+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18">How to Change The Font Of WordPress 3.2 HTML Editor [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/change-the-font-of-wordpress-html-editor/2011/07/18/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tweet And Get It Plugin Helps You Increase Your Twitter Followers</title>
		<link>http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13</link>
		<comments>http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13#comments</comments>
		<pubDate>Wed, 13 Jul 2011 23:58:25 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=35442</guid>
		<description><![CDATA[I guess you are very familiar with the &#8220;Sign up for my newsletter and get a freebie&#8221; gimmick. This is a very common trick used by many webmasters to increase their email/rss feed subscribers. Basically, the webmaster offers a supposedly high-valued item (such as ebooks, software etc) for free, with the condition that the visitors [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13&amp;title=Tweet+And+Get+It+Plugin+Helps+You+Increase+Your+Twitter+Followers&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13">Tweet And Get It Plugin Helps You Increase Your Twitter Followers</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/07/tweetandgetit-logo.jpg" alt="tweetandgetit-logo" title="tweetandgetit-logo" width="180" height="171" class="alignleft size-full wp-image-35453" />I guess you are very familiar with the &#8220;<em>Sign up for my newsletter and get a freebie</em>&#8221; gimmick. This is a very common trick used by many webmasters to increase their email/rss feed subscribers. Basically, the webmaster offers a supposedly high-valued item (such as ebooks, software etc) for free, with the condition that the visitors subscribe to their email newsletters. The <strong>Tweet and Get It</strong> WordPress plugin works in a similar way, except that it helps you to gain more Twitter followers rather than email subscribers.</p>
<p>The working behind the Tweet and Get It plugin is simple. First, you create a high-value product to be given away. Next, you create a <em>Tweet and Get it</em> button which is linked indirectly to your download page. When your visitors click the button, they have to first follow your Twitter account and send a tweet before they are redirected to the download page.<br />
<span id="more-35442"></span><br />
1. Install and activate the <a href="http://wordpress.org/extend/plugins/tweet-and-get-it/">Tweet and Get It</a> plugin.</p>
<p>2. Go to &#8220;<em>Tweet and Get It -> Make Your button</em>&#8221; section. Here&#8217;s where you can create download button for your free product.</p>
<p>You have to enter your Twitter account, the tweet you want the visitor to send in exchange for the product and upload the product (or insert in the download URL if the file is not hosted in your server). Lastly, enter the name of the button.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/tweet-make-button.png" alt="tweet-make-button" title="tweet-make-button" width="600" height="899" class="aligncenter size-full wp-image-35444" /></p>
<p>3. Click the &#8220;Create your button&#8221; button. It will then generate the shortcode for the button. Copy the shortcode and paste it to the product giveaway article. This is what you will see in the front page.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/tweet-show-button.png" alt="tweet-show-button" title="tweet-show-button" width="467" height="237" class="aligncenter size-full wp-image-35446" /></p>
<p>When your reader click the button, he/she will be brought to the Twitter authorization page where they have to grant authorization to the Tweet and Get It app. After that, the following screen will appear and they have to click OK (to send the tweet and follow your Twitter account) to proceed.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/tweet-send-getit-tweet.png" alt="tweet-send-getit-tweet" title="tweet-send-getit-tweet" width="597" height="306" class="aligncenter size-full wp-image-35447" /></p>
<p>Lastly, the download button will appear where they can download your file.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/tweet-download-file.png" alt="tweet-download-file" title="tweet-download-file" width="533" height="342" class="aligncenter size-full wp-image-35449" /></p>
<h2>Conclusion</h2>
<p>One thing that I like about this Tweet and Get It plugin is that from the start to the end, it only takes you 5 minutes to set it up and there is totally no coding knowledge required. If you are looking to increase your Twitter followers count, this is a very useful plugin that you can consider.  </p>
<p><a href="http://tweetandgetit.com/">Tweet and Get It</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13&amp;title=Tweet+And+Get+It+Plugin+Helps+You+Increase+Your+Twitter+Followers&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13">Tweet And Get It Plugin Helps You Increase Your Twitter Followers</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/tweet-and-get-it-increase-twitter-followers/2011/07/13/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 Useful Ways To Protect Your WordPress Login</title>
		<link>http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06</link>
		<comments>http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06#comments</comments>
		<pubDate>Wed, 06 Jul 2011 23:58:11 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=35245</guid>
		<description><![CDATA[If you have not done anything to protect your WordPress site, most probably you are not safe. By default, WordPress only comes with a single login mechanism. Anyone that has your username and password can easily login to your site and wreak havoc. The only way to prevent it is to tighten the security of [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06&amp;title=5+Useful+Ways+To+Protect+Your+WordPress+Login&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06">5 Useful Ways To Protect Your WordPress Login</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-login-lock.png" alt="wp-login-lock" title="wp-login-lock" width="200" height="180" class="alignleft size-full wp-image-35287" />If you have not done anything to protect your WordPress site, most probably you are not safe. By default, WordPress only comes with a single login mechanism. Anyone that has your username and password can easily login to your site and wreak havoc. The only way to prevent it is to tighten the security of your site so other people won&#8217;t be able to crack into your site easily.<br />
<span id="more-35245"></span></p>
<h2>1. Google Authenticator</h2>
<p>The Google Authenticator plugin makes use of the Google Authenticator mobile app to provide a two-factor authentication login to your WordPress site. </p>
<p><strong>Note</strong>: <em>Before activating Google Authenticator, make sure that you have <a href="http://maketecheasier.com/secure-google-account-with-2-step-verification/2011/03/04">enabled two-factor authentication in your Google account</a> and installed the Google Authenticator app in your Android, iPhone or Blackberry phone.</em></p>
<p>Once you have installed and activated the plugin, go to the &#8220;<em>Users -> Your Profile</em>&#8221; section and you should see the Google Authenticator settings.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-google-authenticator.png" alt="wp-google-authenticator" title="wp-google-authenticator" width="545" height="220" class="aligncenter size-full wp-image-35275" /></p>
<p>Check the box beside &#8220;Active&#8221; and save the changes. Next time you login, it will prompt you to enter the secret key. If you failed to enter the correct code, you will not be able to login.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-google-authenticator-login.png" alt="wp-google-authenticator-login" title="wp-google-authenticator-login" width="407" height="496" class="aligncenter size-full wp-image-35276" /></p>
<p><a href="http://wordpress.org/extend/plugins/google-authenticator/">Google Authenticator</a></p>
<h2>2. One Time Password</h2>
<p>One Time Password allows you to login to your WordPress without using your real password. It generates a list of passwords that you can use to login to your site. These passwords are valid only for a single session, so even when the password is stolen, others won&#8217;t be able to login to your site. This is particularly useful if you are travelling but need to login to your site in a cybercafe.</p>
<p>Once installed and activated, go to the One Time Password section to generate your password list. Enter a passphrase and click the &#8220;Generate&#8221; button.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-otp.png" alt="wp-otp" title="wp-otp" width="580" height="458" class="aligncenter size-full wp-image-35278" /></p>
<p>Print out the generated password list and bring it with you wherever you go.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/otp-generated-password.png" alt="otp-generated-password" title="otp-generated-password" width="600" height="408" class="aligncenter size-full wp-image-35279" /></p>
<p>When you need to login, it will show a sequence number. You just have to match the sequence number with your password list and enter the password accordingly.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-otp-seq.png" alt="wp-otp-seq" title="wp-otp-seq" width="340" height="249" class="aligncenter size-full wp-image-35280" /></p>
<p><a href="http://wordpress.org/extend/plugins/one-time-password/">One Time Password</a></p>
<h2>3. WP Login Security</h2>
<p>WP Login Security works via the IP address. It first requires administrators to register or whitelist their IP address. Next, it will detect the IP address whenever the administrator logins. If the IP address is not recognized, it will send an email to the administrator with a link that contains a one-time key.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-login-security.png" alt="wp-login-security" title="wp-login-security" width="600" height="408" class="aligncenter size-full wp-image-35283" /></p>
<p>A good thing about this plugin is that there is little or no configurations required. You just activate it and it is good to go. </p>
<p><a href="http://wordpress.org/extend/plugins/wp-login-security/">WP Login security</a></p>
<h2>4. Login Lockdown</h2>
<p>We have mentioned Login Lockdown before in our previous post on <a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">WordPress security</a>. We are going to mention it again here because it is truly a useful plugin. What it does is to records the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. </p>
<p><a href="http://wordpress.org/extend/plugins/login-lockdown/">Login Lockdown</a></p>
<h2>5. WP Firewall 2</h2>
<p>This plugin is not directly related to the login field, but it protects your site by investigating web requests to identify malicious attack. It is able to stop the attack before it causes damage to your database. </p>
<p>After activating, you can find the configuration options under the Firewall section. The default options are often good enough for everyone and you seldom have to make any changes. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/wp-firewall.png" alt="wp-firewall" title="wp-firewall" width="517" height="460" class="aligncenter size-full wp-image-35284" /></p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-firewall-2/">WordPress Firewall 2</a></p>
<p>The above mentioned methods are only some of the ways to protect your WordPress site, don&#8217;t forget to check out:</p>
<ul>
<li><a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">11 Ways To Secure Your WordPress Blog</a></li>
<li><a href="http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13">How to Increase Your Website Security And Performance With CloudFlare</a></li>
<li><a href="http://maketecheasier.com/connect-to-your-wordpress-account-via-secure-ftp/2009/03/09">How To Connect To Your WordPress Account Via Secure FTP</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06&amp;title=5+Useful+Ways+To+Protect+Your+WordPress+Login&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06">5 Useful Ways To Protect Your WordPress Login</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/5-useful-ways-to-protect-wordpress-login/2011/07/06/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Increase Your Website Security And Performance With CloudFlare</title>
		<link>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13</link>
		<comments>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13#comments</comments>
		<pubDate>Mon, 13 Jun 2011 23:58:56 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[cloudflare]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=34278</guid>
		<description><![CDATA[How fast is your website loading? Do you know that Google actually penalizes websites that are slow to load? If you want to get a good search engine ranking, one of the most important thing is to make sure your site load fast, blazingly fast! If you are running WordPress, we have already mentioned several [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;title=How+to+Increase+Your+Website+Security+And+Performance+With+CloudFlare&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13">How to Increase Your Website Security And Performance With CloudFlare</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-speed.jpg" alt="cloudflare-speed" title="cloudflare-speed" width="199" height="153" class="alignleft size-full wp-image-34292" />How fast is your website loading? </p>
<p>Do you know that Google actually <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">penalizes websites that are slow to load</a>? If you want to get a good search engine ranking, one of the most important thing is to make sure your site load fast, blazingly fast!</p>
<p>If you are running WordPress, we have already mentioned several ways to polish up your site loading speed, including <a href="http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14">adding Google Analytics site speed tracking feature</a>, <a href="http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30">lazy loading your images</a>, <a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">using W3 Total Cache</a> and <a href="http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13">minify the code</a>. </p>
<p>One other way is to use CloudFlare as a proxy server.<br />
<span id="more-34278"></span><br />
<strong>CloudFlare</strong> acts as a proxy server that link between you and your readers. When your readers enter your site&#8217;s URL, the browser will first connect to CloudFlare, which will then detect their locations and load your site content from the server closest to the readers. This will ensure your reader get the fastest loading time and performance. Furthermore, CloudFlare caches your script, css and image files, so there is no wastage of bandwidth and server resources.</p>
<p>In addition, as a proxy server, CloudFlare can detect who is accessing your site and block threats and limit abusive bots and crawlers before they reach you. In other words, CloudFlare is able to increase your site security as well.</p>
<h2>Configuring CloudFlare</h2>
<p>Getting your site to run with CloudFlare is easy. </p>
<p>1. Go to <a href="http://www.cloudflare.com">CloudFlare.com</a> and sign up for an account.</p>
<p>2. Next, enter your site&#8217;s domain name. Click &#8220;Add this domain&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-enter-domain-name.png" alt="cloudflare-enter-domain-name" title="cloudflare-enter-domain-name" width="600" height="211" class="aligncenter size-full wp-image-34280" /></p>
<p>3. CloudFlare will then scan your DNS. It might take up to 2 minutes. Once the scanning is completed, click &#8220;Continue to Step 2&#8243;.</p>
<p>4. The next page displays a list of your site existing DNS record. Check to see if they are correct. If necessary, you can add in extra DNS record here. If everything is correct, scroll down to the end and click &#8220;<em>I&#8217;m done checking my DNS records, continue</em>&#8221;</p>
<p>5. CloudFlare will then register your DNS setting and configure itself to power your site. CloudFlare will also add a sub-domain (of the name &#8220;direct&#8221;) for you to access your server without passing through the CloudFlare network.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-dns-record.png" alt="cloudflare-dns-record" title="cloudflare-dns-record" width="600" height="268" class="aligncenter size-full wp-image-34284" /></p>
<p>6. The last step is to update your domain with the new DNS setting. If you register your domain name via a domain registrar, you can login to your domain registrar account and change the DNS setting. If you got everything set up via your web-host, submit a ticket and get them to change the DNS setting for you.</p>
<p>That&#8217;s it. You are good to go. </p>
<p>This is loading speed of Make Tech Easier before and after implementing CloudFlare.</p>
<p>Before:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-pingdom-before.png" alt="cloudflare-pingdom-before" title="cloudflare-pingdom-before" width="432" height="450" class="aligncenter size-full wp-image-34281" /></p>
<p>After:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-pingdom-after.png" alt="cloudflare-pingdom-after" title="cloudflare-pingdom-after" width="415" height="438" class="aligncenter size-full wp-image-34288" /></p>
<p>There is a saving of 1.8 second, which translate to a 18.5% improvement. </p>
<p>The above results were taken from <a href="http://tools.pingdom.com">Pingdom</a>. You should also test out your site loading speed before and after implementing CloudFlare too.</p>
<h2>What&#8217;s next after configuring CloudFlare?</h2>
<p>After you have set up CloudFlare, login to your CloudFlare account and go to the &#8220;Settings -> CloudFlare Settings&#8221; (the link is beside your website). Here is where you can configure the settings for CloudFlare. Some of the important settings include <em>Security level</em>, <em>Caching level</em>, <em>customize the Challenge page</em>, <em>E-mail Address Obfuscation</em>, <em>IP Geolocation</em> (useful if you are showing geolocation ads) and <em>Hotlink Protection</em>. </p>
<p>In addition, if you are using WordPress, install the <a href="http://wordpress.org/extend/plugins/cloudflare/">CloudFlare plugin</a> which can help you optimize your database and better protect your site from spammers. </p>
<p>Image credit: <a href="http://www.flickr.com/photos/lrargerich/3122070723/" target="_blank" re="nofollow">lrargerich</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;title=How+to+Increase+Your+Website+Security+And+Performance+With+CloudFlare&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13">How to Increase Your Website Security And Performance With CloudFlare</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Add Dynamic Widgets To Your WordPress Blog Without Meddling With The Code</title>
		<link>http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31</link>
		<comments>http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31#comments</comments>
		<pubDate>Tue, 31 May 2011 14:58:20 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33812</guid>
		<description><![CDATA[If you own a WordPress site, have you ever have the need to display different widgets for different pages? For example, you might be running a travel site and you blog about travelling in various countries. You might want to get the sidebar to display a France&#8217;s hotel booking form when the content is about [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31&amp;title=How+to+Add+Dynamic+Widgets+To+Your+WordPress+Blog+Without+Meddling+With+The+Code&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31">How to Add Dynamic Widgets To Your WordPress Blog Without Meddling With The Code</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-widget.png" alt="wp-widget" title="wp-widget" width="178" height="130" class="alignleft size-full wp-image-33822" />If you own a WordPress site, have you ever have the need to display different widgets for different pages? For example, you might be running a travel site and you blog about travelling in various countries. You might want to get the sidebar to display a France&#8217;s hotel booking form when the content is about France or the recommended Italian restaurant widget when you are discussing about Italy. How do you achieve that in WordPress? How do you achieve that in WordPress without having to meddle with the code?<br />
<span id="more-33812"></span></p>
<h2>1. Conditional Widgets</h2>
<p>As its name implies, Conditional Widgets is a plugin that allows you to define a conditional rule for each and every widget. </p>
<p>After you have <a href="http://wordpress.org/extend/plugins/conditional-widgets/">downloaded</a> and activated it, go to your Widgets page and add the widgets you want as per normal. What is different now is that within each widget, there is an option for you to configure when the widget should appear in the blog (refer to the screenshot below).</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-conditional-widgets.png" alt="wp-conditional-widgets" title="wp-conditional-widgets" width="287" height="471" class="aligncenter size-full wp-image-33814" /></p>
<p>You can get it to show/hide on the Home page, certain categories, or even certain pages. It also supports sub-categories and sub-pages. You just need to define the rule for the parent category/page and their sub-categories and sub-pages will follow suit.</p>
<p>One thing though, it does not allow you to configure on a per-post basis. </p>
<h2>2. Widget Logic</h2>
<p>Widget Logic is less intuitive than Conditional Widget, but it gives you the flexibility to define where the widget should appear. Widget Logic make use of the <a href="http://codex.wordpress.org/Conditional_Tags">WordPress conditional tags</a> to determine where the widget should appear. For example, if you want the widget to appear on a post with post id 46, you place the conditional tag <code>is_single(46)</code> in the Widget Logic field.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-widget-logic.png" alt="wp-widget-logic" title="wp-widget-logic" width="295" height="318" class="aligncenter size-full wp-image-33815" /></p>
<p><a href="http://wordpress.org/extend/plugins/widget-logic/">Widget Logic</a></p>
<h2>3. Section Widgets</h2>
<p>The way that Section Widgets works is slightly different from the above two, but it is also the most powerful among the three. Other than the conditional logic, Section Widgets also allows you to create a tabbed sidebar without having to write a single code.</p>
<p>After the installation, go to &#8220;<em>Themes -> Section Widget</em>&#8220;. This is where you can customize the look and feel of the tabbed interface. It comes with 25 UI themes for you to choose. If none of them caught your eyes, you can even define your own style.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-section-widget-tabbed.png" alt="wp-section-widget-tabbed" title="wp-section-widget-tabbed" width="595" height="360" class="aligncenter size-full wp-image-33816" /></p>
<p>In the Widget section, instead of adding a conditional logic to each and every widget, you will have to add the &#8220;Section&#8221; widget to the respective sidebar in order for it to appear. Each Section widget comes with two part. The upper part is where you define the condition (which page/category to appear) and the lower part is the HTML code to display. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-section-widget-content.png" alt="wp-section-widget-content" title="wp-section-widget-content" width="480" height="588" class="aligncenter size-full wp-image-33817" /></p>
<p>To add a tabbed widget, drag and drop the &#8220;Section (tabbed)&#8221; widget to the respective sidebar. Similarly, the top section is where you define the logic and the bottom is where you create tabs and add content to it. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/wp-section-widget-content-tabbed.png" alt="wp-section-widget-content-tabbed" title="wp-section-widget-content-tabbed" width="477" height="620" class="aligncenter size-full wp-image-33818" /></p>
<p>While Section Widget is very powerful, it does have one caveat &#8211; it doesn&#8217;t integrate with other widgets. If you have a custom widget (say the custom menu) that you want to show conditionally on your blog, you won&#8217;t be able to do that with Section Widget. </p>
<p><a href="http://wordpress.org/extend/plugins/section-widget/">Section widget</a></p>
<p>Which method do you use to add conditional widgets to your WordPress site?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31&amp;title=How+to+Add+Dynamic+Widgets+To+Your+WordPress+Blog+Without+Meddling+With+The+Code&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31">How to Add Dynamic Widgets To Your WordPress Blog Without Meddling With The Code</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/add-dynamic-widgets-to-wordpress/2011/05/31/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Clean Up Your Tags in WordPress</title>
		<link>http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26</link>
		<comments>http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26#comments</comments>
		<pubDate>Thu, 26 May 2011 23:58:13 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Clean up]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33613</guid>
		<description><![CDATA[WordPress comes with this &#8220;tag&#8221; feature that allows you to tag your posts. While it is a great feature for you to categorize your posts, there is one problem though &#8211; there are no ways to organize them. Over time, as your tag list grow, it becomes very messy and your database is full of [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26&amp;title=How+to+Clean+Up+Your+Tags+in+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26">How to Clean Up Your Tags in WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/05/tags-cloud.png" alt="tags-cloud" title="tags-cloud" width="200" height="163" class="alignleft size-full wp-image-33640" />WordPress comes with this &#8220;<em>tag</em>&#8221; feature that allows you to tag your posts. While it is a great feature for you to categorize your posts, there is one problem though &#8211; there are no ways to organize them. Over time, as your tag list grow, it becomes very messy and your database is full of those tags that you either have no use for them or have used only once. If you find that your WordPress blog is running slower and slower everyday, cleaning up your tag list is definitely one of the things you should do to regain the speed and power of your blog.<br />
<span id="more-33613"></span><br />
In WordPress, other than adding new tags, the only other option to manage your tags is to delete them. This is definitely not a good solution. There are times when we create two tags of the same meaning, such as &#8220;<em>windows7</em>&#8221; and &#8220;<em>windows-7</em>&#8220;. For such cases, the solution is to merge them into one rather than delete all of them.</p>
<p>A good plugin with the merge tag functionality is <a href="https://wordpress.org/extend/plugins/term-management-tools/">Term Management Tools</a>. With this plugin, you can manage your terms (category and tags) easily.</p>
<h2>Cleaning up your tags in WordPress</h2>
<p>1. Install and activate the Term Management Tools plugin in your WordPress dashboard. </p>
<p>2. Go to your Post Tag list (Posts -> Post Tags).</p>
<p>3. The default view is to show 20 tags per page. If you have plenty of tags, it is going to take up a lot of your time switching between each page. What you can do is to increase the number of tags shown per page. Click the &#8220;<em>Screen Options</em>&#8221; button at the top of the page. Enter the number of tags you want it to show per page. The maximum number you can enter is 999.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/tags-show-on-screen.png" alt="tags-show-on-screen" title="tags-show-on-screen" width="300" height="150" class="aligncenter size-full wp-image-33634" /></p>
<p>4. Go through the list of tags and put a check beside the tags that have 0 post. At the top (or bottom), click on the dropdown menu and select &#8220;Delete&#8221;. Click Apply. This will delete the unused tags.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/tags-delete.png" alt="tags-delete" title="tags-delete" width="401" height="306" class="aligncenter size-full wp-image-33635" /></p>
<p>5. Next, go through the list again. For those similar or duplicate tags that you have created, put a check beside them and select &#8220;Merge&#8221; from the dropdown menu. An input field will appear for you to enter the tag name that you want to merge the two (or more) tags into. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/tags-merge.png" alt="tags-merge" title="tags-merge" width="385" height="344" class="aligncenter size-full wp-image-33637" /></p>
<p>6. If your tag list is long, it will take a long time for you to finish cleaning up your tags, but I assure you it is well worth the effort. Nothing is worst than a messed up and bulky database. Once you have completed the clean up, deactivate the plugin. You have no use for it anymore.</p>
<p>7. Lastly, optimize your database and do a full database backup (using the <a href="https://wordpress.org/extend/plugins/wp-dbmanager/">WP DB Manager</a> plugin). </p>
<p>8. That&#8217;s it.</p>
<p>You might also want to check out other ways to <a href="http://maketecheasier.com/8-useful-tricks-to-clean-up-streamline-your-wordpress-database/2009/02/17/">clean up your WordPress blog</a>.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26&amp;title=How+to+Clean+Up+Your+Tags+in+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26">How to Clean Up Your Tags in WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/clean-up-tags-in-wordpress/2011/05/26/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Add The Facebook Send Button to Your WordPress Site</title>
		<link>http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16</link>
		<comments>http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16#comments</comments>
		<pubDate>Mon, 16 May 2011 23:58:25 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[send]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33280</guid>
		<description><![CDATA[By now, I believe most of you knew the existence of the Facebook LIKE button. It is a button that you can click to express your interest (on Facebook) in the particular page or site. To make thing even more interesting, Facebook came out with a new button, known as the SEND button that allows [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16&amp;title=How+to+Add+The+Facebook+Send+Button+to+Your+WordPress+Site&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16">How to Add The Facebook Send Button to Your WordPress Site</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/05/send-button.jpg" alt="send-button" title="send-button" width="200" height="105" class="alignleft size-full wp-image-33285" />By now, I believe most of you knew the existence of the Facebook LIKE button. It is a button that you can click to express your interest (on Facebook) in the particular page or site. To make thing even more interesting, Facebook came out with a new button, known as the SEND button that allows you to send a content to a friend. This is similar to the mail-a-friend function, except that the &#8220;mail&#8221; will go directly to your friend&#8217;s Facebook inbox.<br />
<span id="more-33280"></span></p>
<h2>What the difference between LIKE and SEND button?</h2>
<p>When you click on the LIKE button, it will be posted to your wall and publicly announce that you LIKE a particular piece of content, be it your friend&#8217;s status update, an article, a fan page, or even a site.</p>
<p>When you click on the SEND button, a dialog box will appear and you can enter your Facebook friends&#8217; names and type a personal message. The content will then be sent to your friend&#8217;s Facebook Inbox. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/send-dialog-box.png" alt="send-dialog-box" title="send-dialog-box" width="473" height="248" class="aligncenter size-full wp-image-33283" /></p>
<h2>Adding the SEND button to your WordPress site</h2>
<p>In order to add the SEND button, you must be using the Facebook&#8217;s XFBML code in your site. The iFrame version does not work at all. If you have not added the XFBML code, follow the <a href="http://maketecheasier.com/howto-guide-to-add-facebook-social-plugin-to-your-site/2010/04/28/">instruction here</a> to implement it to your site.</p>
<p>Next, copy the following code and paste it to your theme file (must be within the loop) where you want the SEND button to appear:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:send href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; font=&quot;arial&quot;&gt;&lt;/fb:send&gt;</pre></div></div>

<p>To get the SEND button to show up beside the LIKE button, replace the existing LIKE button code with this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#appId=12345678&amp;amp;xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:like href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; send=&quot;true&quot; width=&quot;450&quot; show_faces=&quot;false&quot; font=&quot;arial&quot;&gt;&lt;/fb:like&gt;</pre></div></div>

<p>Remember to replace <em>appId=12345678</em> with your own Facebook appID.</p>
<p><strong>Alternative method: via plugins</strong></p>
<p>If you have difficulty understanding the method above, the best way to implement the Facebook SEND button is via a plugin. </p>
<p>1. Install the <a href="http://tracking.42dev.eu/projects/facebook-send-button">Facebook Send Button</a> WordPress Plugin.</p>
<p>2. Activate the plugin</p>
<p>That&#8217;s it. This is a simple plugin that automatically add the SEND button to your single post/page. No configuration required.</p>
<p>Other plugins you can use include: <a href="https://wordpress.org/extend/plugins/facebook-like-button-for-dummies/">Facebook Like Button for Dummies</a>, <a href="https://wordpress.org/extend/plugins/facebook-send-like-button/">Facebook Send Button By Teknoblogo.com</a>, <a href="https://wordpress.org/extend/plugins/facebook-like-and-send-2-in-1/">Facebook Like and Send (2 in 1)</a></p>
<p>What&#8217;s your view on the Facebook&#8217;s SEND button? Is it adding more value to your site?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16&amp;title=How+to+Add+The+Facebook+Send+Button+to+Your+WordPress+Site&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16">How to Add The Facebook Send Button to Your WordPress Site</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/add-facebook-send-button-to-wordpress-site/2011/05/16/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress For Android: A Capable Solution For Monitoring Your WordPress Site On The go</title>
		<link>http://maketecheasier.com/wordpress-for-android/2011/04/12</link>
		<comments>http://maketecheasier.com/wordpress-for-android/2011/04/12#comments</comments>
		<pubDate>Tue, 12 Apr 2011 23:58:20 +0000</pubDate>
		<dc:creator>Andrew Vazquez</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[app]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=31773</guid>
		<description><![CDATA[Many web savvy individuals know about WordPress and its various uses. What was once a simple blogging platform has matured into a sophisticated, yet flexible, content management system. Its flexibility has led users of all walks of life to produce their own content and share it with the world. Despite all the wonders that WordPress [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/wordpress-for-android/2011/04/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/wordpress-for-android/2011/04/12&amp;title=WordPress+For+Android%3A+A+Capable+Solution+For+Monitoring+Your+WordPress+Site+On+The+go&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/wordpress-for-android/2011/04/12">WordPress For Android: A Capable Solution For Monitoring Your WordPress Site On The go</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-31774 alignleft" title="Wordpress-Logo" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-Logo.png" alt="Wordpress-Logo" width="180" height="180" />Many web savvy individuals know about WordPress and its various uses. What was once a simple blogging platform has matured into a sophisticated, yet flexible, content management system. Its flexibility has led users of all walks of life to produce their own content and share it with the world. Despite all the wonders that WordPress offers, it was previously impossible to control a WordPress site without the use of a computer. Now the ability to control a WordPress blog remotely is possible via the use of its Android application.<br />
<span id="more-31773"></span><br />
The WordPress Android application, as with virtually all other android apps, is available for download in the Android Market. Open the Market Browser and perform a search for WordPress. The Application will be the first listing. Download the application and open it when installation has finished.</p>
<p>Upon first launching the application, you will be presented with a login screen where you are allowed to enter the credentials for your blog.</p>
<p><img class="aligncenter size-full wp-image-31775" title="Wordpress-login-screen" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-login-screen.png" alt="Wordpress-login-screen" width="320" height="508" /></p>
<p><strong>Note</strong>: There are two version of WordPress. The first is WordPress.com, which is a service similar to Blogger and hosts blogs for individuals free of charge. The second is WordPress.org, which is for individuals hosting their own blog on their own servers. The Android app can connect to either version of WordPress.</p>
<p>After you have entered your blogs credentials, the application will display all available blogs in a list. It should be mentioned that the Android application is capable of connecting to more than one blog at a time. This particular feature is convenient, as it allows you to post to any number of blogs you owned or involved in.</p>
<p><img class="aligncenter size-full wp-image-31776" title="Wordpress-blogsscreen" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-blogsscreen.png" alt="Wordpress-blogsscreen" width="320" height="293" /></p>
<p>Selecting a blog from the list will bring you to the blog control screen. At the top of the screen, you have four available options: comments, posts, pages and stats. The comments feature allows you to approve comments ( or delete them ) while on the run. The Post and Pages feature allows you to create posts and pages from your mobile phone. Although this feature isn’t necessarily ideal for intense editing, it is a nice feature if you need to make minor adjustments to your site while away from the office.</p>
<p><img class="aligncenter size-full wp-image-31777" title="Wordpress-postactions" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-postactions.png" alt="Wordpress-postactions" width="320" height="507" /></p>
<p>Apart from these basic editing features, the application also integrates with communication services on your mobile device. Selecting a post, for instance, will give you the option of sharing the posts via URL, SMS, Gmail, or even Twitter. This particular feature makes the application an ideal platform to share your thoughts while on the move.</p>
<p><img class="aligncenter size-full wp-image-31778" title="Wordpress-shareposturl" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-shareposturl.png" alt="Wordpress-shareposturl" width="320" height="506" /></p>
<p><strong>Note</strong>: The stats feature works only with the WordPress.com version of WordPress. As mentioned previously, this is the freely available and pre-hosted web service that anyone can sign up for. This particular feature is not compatible with WordPress.org, the self-hosted version of WordPress.</p>
<p>In addition to the editing and sharing functions, the application comes with its own notification settings. This setting alerts you to any recent comments that a blog visitor may have posted to your site. All things considered, this is a handy feature to have. If you’re a business owner using WordPress as your main site, this function will allow you to connect with your clients or readers almost as quickly as they can post.</p>
<p><img class="aligncenter size-full wp-image-31779" title="Wordpress-commentnotifications" src="http://imagecdn.maketecheasier.com/2011/04/Wordpress-commentnotifications.png" alt="Wordpress-commentnotifications" width="320" height="509" /></p>
<p>Some may argue that the WordPress app is too sparse in its list of features, and to some extent, it is. The application is primarily designed to make quick edits, approve comments, and be alerted of activities that are occurring on your blog or site. All in all, the application performs its intended functions admirably well and can serve you or your webmaster needs.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/wordpress-for-android/2011/04/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/wordpress-for-android/2011/04/12&amp;title=WordPress+For+Android%3A+A+Capable+Solution+For+Monitoring+Your+WordPress+Site+On+The+go&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/wordpress-for-android/2011/04/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/wordpress-for-android/2011/04/12">WordPress For Android: A Capable Solution For Monitoring Your WordPress Site On The go</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/wordpress-for-android/2011/04/12/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>4 Excellent Techniques To Enhance The WordPress Admin Bar</title>
		<link>http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03</link>
		<comments>http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03#comments</comments>
		<pubDate>Sun, 03 Apr 2011 14:58:58 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wp admin bar]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=31408</guid>
		<description><![CDATA[If you have upgraded to the latest WordPress version (3.1), you will discover that it shows the WordPress Admin bar for you and your logged-in users. While the WP Admin Bar is supposed to make your life easier by providing useful links at the top of the page, it does not provide any form of [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03&amp;title=4+Excellent+Techniques+To+Enhance+The+WordPress+Admin+Bar&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03">4 Excellent Techniques To Enhance The WordPress Admin Bar</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/03/wpadminbar-main.png" alt="wpadminbar-main" title="wpadminbar-main" width="238" height="122" class="alignleft size-full wp-image-31430" />If you have upgraded to the latest WordPress version (3.1), you will discover that it shows the WordPress Admin bar for you and your logged-in users. While the WP Admin Bar is supposed to make your life easier by providing useful links at the top of the page, it does not provide any form of customization, which crippled its usefulness. </p>
<p>Here are 4 useful techniques you can use to customize and bring out the best of the WP Admin Bar.<br />
<span id="more-31408"></span></p>
<h3>1. Remove existing links from WP Admin Bar</h3>
<p>1. Navigate to your theme folder and open the <code>functions.php</code> file with a text editor.</p>
<p>2. paste the following code to the end of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'remove_admin_bar_links'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> remove_admin_bar_links<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;">$wp_admin_bar</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">remove_menu</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'comments'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>The code above will remove the &#8220;COMMENTS&#8221; link from the Admin Bar. It works by using the functions  <code>$wp_admin_bar-&gt;remove_menu(ID)</code>. By providing the ID of the links that you want to remove (in this case, the ID is <em>COMMENTS</em>), you can remove any links from the Admin Bar.</p>
<p>Here are some of the ID that will be useful to you:</p>
<ul>
<li><strong>my-account-with-avatar</strong> / <strong>my-account</strong>: Links to your account. The ID depends upon if you have avatar enabled or not.</li>
<li><strong>my-blogs</strong>: My Sites menu. For network mode only</li>
<li><strong>edit</strong>: Post/Page edit link</li>
<li><strong>new-content</strong>: Add New menu</li>
<li><strong>comments</strong>: Comments link</li>
<li><strong>appearance</strong>: Appearance menu</li>
<li><strong>updates</strong>: Updates link</li>
<li><strong>get-shortlink</strong>: Shortlink to a page</li>
</ul>
<h3>2. Adding custom links to the WP Admin Bar</h3>
<p>To add your own links to the Admin bar, append the following code to your <code>functions.php</code>.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'add_admin_bar_links'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> add_admin_bar_links<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;">$wp_admin_bar</span><span style="color: #339933;">;</span>
       <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_menu</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> 
		<span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Google'</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Google'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>  
		<span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'http://google.com'</span> 
	<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>The example above add &#8220;Google.com&#8221; as a link in the Admin Bar. You can, of course, customize it to your liking. Things that you need to take note is the &#8216;id&#8217;, &#8216;title&#8217; and &#8216;href&#8217;</p>
<p><strong>id</strong>: the identifier for the link<br />
<strong>title</strong>: the name that appear on the Admin Bar<br />
<strong>href</strong>: the url the link is pointing to.</p>
<p>You can also create a submenu with the code below:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'add_admin_bar_links'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> add_admin_bar_links<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;">$wp_admin_bar</span><span style="color: #339933;">;</span>
       <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_menu</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> 
		<span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Google'</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Google'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>  
		<span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'http://google.com'</span> 
	<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_menu</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> 
		<span style="color: #0000ff;">'parent'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Google'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'GoogleAnalytics'</span><span style="color: #339933;">,</span> 
		<span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Google Analytics'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>  
		<span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'http://google.com/analytics'</span> 
	<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>This is how it looks like:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/wpadminbar-submenu.png" alt="wpadminbar-submenu" title="wpadminbar-submenu" width="488" height="107" class="aligncenter size-full wp-image-31422" /></p>
<h3>3. Show the login form if user is not logged in</h3>
<p>By default, the Admin Bar will only appear for logged-in users. If, however, you want to make the admin bar visible for everyone and make it show the login form if the user is not logged in, you can use the <a href="http://wordpress.org/extend/plugins/wordpress-admin-bar-improved/">WordPress Admin Bar Improved</a> to enable this functionality.</p>
<h3>4. Disable the Admin Bar totally</h3>
<p>Some of you might dislike the admin bar and wish to remove it totally. Here&#8217;s how you can do so.</p>
<p>1. Login to your WordPress dashboard and go to your profile tab.</p>
<p>2. Under the &#8220;Show Admin Bar&#8221; section, uncheck the option &#8220;<em>when viewing site</em>&#8221; and &#8220;<em>in dashboard</em>&#8220;. Save the changes. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/wpadminbar-disable.png" alt="wpadminbar-disable" title="wpadminbar-disable" width="402" height="82" class="aligncenter size-full wp-image-31427" /></p>
<p>If you are managing a multi-authors blog (or in network mode) and you want to disable the Admin Bar for all your authors, in your <code>functions.php</code> file, copy and paste the following code;</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'show_admin_bar'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'__return_false'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This will disable the Admin Bar sitewide.</p>
<p>What other tricks do you use to customize the WP Admin Bar?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03&amp;title=4+Excellent+Techniques+To+Enhance+The+WordPress+Admin+Bar&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03">4 Excellent Techniques To Enhance The WordPress Admin Bar</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/4-excellent-techniques-to-enhance-wp-admin-bar/2011/04/03/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Add Facebook Comment System to Your Site</title>
		<link>http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10</link>
		<comments>http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10#comments</comments>
		<pubDate>Fri, 11 Mar 2011 00:53:43 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=30692</guid>
		<description><![CDATA[Facebook has recently released a new commenting system that aims to take the web by storm. This comment system can replace your existing commenting functionality and allows your reader to post comments with their Facebook account. The comments will also be posted to their Facebook&#8217;s wall, which could potentially increase more traffic for you. Now [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10&amp;title=How+to+Add+Facebook+Comment+System+to+Your+Site&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10">How to Add Facebook Comment System to Your Site</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/03/facebook-comments.png" alt="facebook-comments" title="facebook-comments" width="200" height="110" class="alignleft size-full wp-image-30702" />Facebook has recently released a new commenting system that aims to take the web by storm. This comment system can replace your existing commenting functionality and allows your reader to post comments with their Facebook account. The comments will also be posted to their Facebook&#8217;s wall, which could potentially increase more traffic for you. </p>
<p>Now if you are keen to implement the Facebook comment system in your site, here&#8217;s how you can do so:<br />
<span id="more-30692"></span></p>
<h3>Static site</h3>
<p>If you are running a static website, adding the Facebook comment system is easy. </p>
<p>1. Go to <a href="http://developers.facebook.com/docs/reference/plugins/comments/">Facebook comments social plugin</a> page.</p>
<p>2. Enter the URL of your site, number of comments to show and the width of the comments. Click the &#8220;Get Code&#8221; button.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/facebook-comments-getcode.png" alt="facebook-comments-getcode" title="facebook-comments-getcode" width="286" height="317" class="aligncenter size-full wp-image-30694" /></p>
<p>3. Copy the code and paste it to your site where you want the comment to appear. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/facebook-comments-code.png" alt="facebook-comments-code" title="facebook-comments-code" width="480" height="232" class="aligncenter size-full wp-image-30695" /></p>
<p>4. Next, still in your site, paste the following code to anywhere between the <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code> tag</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;meta property=&quot;fb:app_id&quot; content=&quot;{YOUR_FACEBOOK_USER_ID}&quot;&gt;</pre></div></div>

<p>Replace the &#8220;{YOUR_FACEBOOK_USER_ID}&#8221; with your own Facebook ID. This will allow you to moderate the comments.</p>
<p>5. Lastly, paste the following code to just before the <code>&lt;body&gt;</code> tag.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>That&#8217;s it for implementing Facebook comment on static website.</p>
<h3>WordPress</h3>
<p>The easiest way to implement Facebook Comment in your WordPress site is via plugin. One of the more promising plugin is <a href="http://wordpress.org/extend/plugins/facebook-comments-for-wordpress/">Facebook Comments for WordPress</a>. </p>
<p>1. Download, install and active Facebook Comments For WordPress.</p>
<p>2. Before you can use it, you need to register a Facebook application and obtain the app id. Go to <a href="http://www.facebook.com/developers/createapp.php">http://www.facebook.com/developers/createapp.php</a> and register a new app. Once you have registered the app, copy the Application ID and Application Secret.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/facebook-comments-app-id.jpg" alt="facebook-comments-app-id" title="facebook-comments-app-id" width="559" height="83" class="aligncenter size-full wp-image-30697" /></p>
<p>3. Back to your WordPress dashboard, go to the Facebook Comments settings page and paste the Application ID and Application Secret into the first two fields.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/03/facebook-comments-for-wordpress.png" alt="facebook-comments-for-wordpress" title="facebook-comments-for-wordpress" width="510" height="414" class="aligncenter size-full wp-image-30698" /></p>
<p>4. From here on, you can configure the plugin to your liking. The default language for comments is set to &#8220;Afrikaan&#8221;, so make sure you change that in the settings before you make it live. Once done, click the &#8220;Update Option&#8221; button. </p>
<p>Go to your blog and you should see the commenting system in action. If you are using other commenting system like Disqus or IntenseDebate, remember to deactivate them, else you will see two comment system in your blog. </p>
<p>Now, a quick poll, how many of you will switch to Facebook comments system?</p>
<a href="http://polldaddy.com/poll/4691258">Take Our Poll</a>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10&amp;title=How+to+Add+Facebook+Comment+System+to+Your+Site&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10">How to Add Facebook Comment System to Your Site</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/add-facebook-comment-system-to-site/2011/03/10/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Platform: A Drag-And-Drop Customizable WordPress Theme</title>
		<link>http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28</link>
		<comments>http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28#comments</comments>
		<pubDate>Fri, 28 Jan 2011 21:58:16 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=28485</guid>
		<description><![CDATA[According to the latest statistical data from Royal Pingdom, there are approximately 152 million blogs exist today. To put that number into context, there are more blogs out there than the whole Japanese citizen in the world. If you want to stand out among this kind of crowds, you need to work really hard &#8211; [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28&amp;title=Platform%3A+A+Drag-And-Drop+Customizable+WordPress+Theme&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28">Platform: A Drag-And-Drop Customizable WordPress Theme</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/01/Platform-wp-logo.jpg" alt="Platform-wp-logo" width="200" height="200" class="alignleft size-full wp-image-28996" />According to the <a href="http://royal.pingdom.com/2011/01/12/internet-2010-in-numbers/">latest statistical data from Royal Pingdom</a>, there are approximately 152 million blogs exist today. To put that number into context, there are more blogs out there than the whole Japanese citizen in the world. If you want to stand out among this kind of crowds, you need to work really hard &#8211; and customization is the key.</p>
<p>One of the most common way to customize your blog is to use themes. If you are a WordPress user, you should be familiar in the concept of themes. But even though there are literary thousands of free themes out there, using them will not really help you to stand out &#8211; as everybody is doing the same thing. A quick calculation will tell us that in average one theme is used by more than tens of thousands blogs.</p>
<p>That&#8217;s why customizable themes is the solution. During my quest to find a good customized WordPress theme, I found <a href="http://wordpress.org/extend/themes/platform">Platform</a>, a theme that can be easily customized by dragging and dropping the elements.<br />
<span id="more-28485"></span></p>
<h3>Customizing The Look</h3>
<p>Let&#8217;s start by downloading and installing the theme. Go to the admin area of your WordPress blog and choose &#8220;<em>Themes</em>&#8221; from the sidebar menu, then continue with &#8220;<em>Install New Theme</em>&#8221; tab. Do a search and click the &#8220;<em>Install</em>&#8221; link.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-01a-Search-Theme.jpg" alt="Platform 01a Search Theme.jpg" width="540" height="300" /></p>
<p>Confirm the installation by clicking the &#8220;<em>Install Now</em>&#8221; button.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-01b-Install-Platform.jpg" alt="Platform 01b Install Platform.jpg" width="580" height="410" /></p>
<p>After you have activated the theme, you&#8217;ll see a new item appear in the sidebar menu. Clicking it will open the &#8220;<em>Platform Theme Options</em>&#8221; and its own list of customization items.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-02a-Platform-Settings.jpg" alt="Platform 02a Platform Settings.jpg" width="420" height="325" /></p>
<p>The first option that you can find is the access to &#8220;<em>View Site</em>&#8220;, &#8220;<em>Docs</em>&#8221; and &#8220;<em>Forum</em>&#8220;. Anytime you need help on using the theme, you can visit the Docs and/or Forum links.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-01aa-Platform-Theme-Options.jpg" alt="Platform 01aa Platform Theme Options.jpg" width="580" height="160" /></p>
<p>Now let&#8217;s explore the theme&#8217;s menu. First the &#8220;<em>Global Options.</em>&#8220;. This is the place to customize your blog&#8217;s header image and favicon. All that you have to do is to upload the image that you want to use. While there is no restriction on the header image, the favicon that you want to use must be in &#8220;<em>.ico</em>&#8221; or &#8220;<em>.png</em>&#8221; format and the size is 16&#215;16 pixels.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-02b-Global-Options.jpg" alt="Platform 02b Global Options.jpg" width="580" height="300" /></p>
<p>Here are where your header image and favicon will appear on your blog.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-02bb-Images.jpg" alt="Platform 02bb Images.jpg" width="390" height="320" /></p>
<p>Other than the two items mentioned above, Global Settings will also give you access to set: <em>Twitter Integration</em> (requires Twitter for WordPress plugin), and <em>Page Content &amp; Body background color</em>.</p>
<p>Next is the &#8220;<em>Template Setup</em>&#8220;. Here is the place to set what elements that you want to show in each template. You can drag and drop the items that you want to the &#8220;<em>Displayed Page Content Area Sections</em>&#8221; on the left, and the ones that you don&#8217;t want to the &#8220;<em>Available/Disabled Sections</em>&#8221; on the right.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-03a-Template-Setup.jpg" alt="Platform 03a Template Setup.jpg" width="580" height="464" /></p>
<p>There are many templates that you can customize. Each comes with its own elements. So take your time and go through these templates and items one by one.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-03b-Available-Templates.jpg" alt="Platform 03b Available Templates.jpg" width="580" height="291" /></p>
<p>Go to the &#8220;<em>Layout Editor</em>&#8221; to choose what kind of layout you want your blog to be. You can also set the dimension of each area of the layout simply by dragging  the borders of by writing down the dimension in the available fields below the layout editor.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-04a-Layout-Configure.jpg" alt="Platform 04a Layout - Configure.jpg" width="580" height="419" /></p>
<h3>Further Customization</h3>
<p>Since there are too many customizable items that you can tinker with, the best way to get familiar with Platform is to install and play with it yourself. For example, you can choose to show or hide the &#8220;<em>News/Blog RSS Icon</em>&#8221; from the &#8220;<em>Header And Nav</em>&#8221; menu.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-04b-Header-And-Nav.jpg" alt="Platform 04b Header And Nav.jpg" width="580" height="370" /></p>
<p>Or to select the content layout for post pages from &#8220;<em>Blog And Post</em>&#8221; menu.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-04c-Blog-And-Post.jpg" alt="Platform 04c Blog And Post.jpg" width="580" height="370" /></p>
<p>And also set the text for social links and choose which social network icons that you want to show/hide at your blog footer.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-04c2-Social-Links.jpg" alt="Platform 04c2 Social Links.jpg" width="580" height="380" /></p>
<p>Or to add custom scripts to your blog, such as Google Analytics script.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-04d-Footer-Scripts.jpg" alt="Platform 04d Footer Scripts.jpg" width="580" height="257" /></p>
<p>The customization process could be a little bit overwhelming, but never forget to save your changes. The save buttons are available at the top and the bottom of the page.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-05a-Save-Options.jpg" alt="Platform 05a Save Options.jpg" width="380" height="160" /></p>
<h3>Restore, Export And Import Settings</h3>
<p>One of the best features of Platform theme is its ability to export the customization that you&#8217;ve made to be used in another blog. So, you only have to tweak the theme once, export the setting and import it to your other blogs if you want to.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2011/01/Platform-09a-Restore-Export-Import.jpg" alt="Platform 09a Restore - Export - Import.jpg" width="580" height="200" /></p>
<p>Have you tried Platform? Or do you use other customizable WordPress themes? Please share your experience in customizing your blogs using the comment below.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28&amp;title=Platform%3A+A+Drag-And-Drop+Customizable+WordPress+Theme&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28">Platform: A Drag-And-Drop Customizable WordPress Theme</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/platform-drag-drop-customizable-wordpress-theme/2011/01/28/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Spread The Word About Your Website Virally Using TAF4Free</title>
		<link>http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21</link>
		<comments>http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21#comments</comments>
		<pubDate>Tue, 21 Dec 2010 13:00:56 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[viral]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=26234</guid>
		<description><![CDATA[What do you call an email that pops up out of nowhere in your inbox from somebody that you don&#8217;t know giving you a link to visit? That&#8217;s definitely a SPAM. But what do you call an email from your friend telling you to check out the exact same link? That&#8217;s a friendly recommendation. Even [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21&amp;title=Spread+The+Word+About+Your+Website+Virally+Using+TAF4Free&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21">Spread The Word About Your Website Virally Using TAF4Free</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/12/TAF-00-Tell-A-Friend.jpg" alt="TAF-00-Tell-A-Friend" title="TAF-00-Tell-A-Friend" width="240" height="160" class="alignleft size-full wp-image-26285" />What do you call an email that pops up out of nowhere in your inbox from somebody that you don&#8217;t know giving you a link to visit? That&#8217;s definitely a SPAM. But what do you call an email from your friend telling you to check out the exact same link? That&#8217;s a friendly recommendation. Even though the only difference between the two emails might only be one line of text &#8211; the sender&#8217;s name, the difference in result is huge.</p>
<p>That&#8217;s why in the environment where you can&#8217;t really put a face to the name, trust is a very valuable currency. And that&#8217;s why the concept of word of mouth recommendation from friends that we know and trust is very powerful. Add some social networks to the mixture and the effect would be multiplied. That&#8217;s the idea behind <a href="http://tellafriend.socialtwist.com/products/taf-for-free">TAF4Free</a>.<br />
<span id="more-26234"></span></p>
<h3>Recommendation With Some Social Twist</h3>
<p>TAF4Free (Tell A Friend For Free) is a web tool from SocialTwist which will allow you &#8211; as a web owner &#8211; to provide an easy way for your visitor to tell their friends about your site(s). TAF4Free allows your readers to contact people in their social networks as well as send emails to contacts in their address book.</p>
<p>But before you can use the tool, you need to sign up with SocialTwist. Signing up will allow you to change the configuration, view usage statistic, create and customize more widgets.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-01a-Signup-email-n-button.jpg" alt="TAF 01a Signup - email n button.jpg" width="580" height="320" /></p>
<p>This sign up process also serves as the place where you can customize the aspects of your Tell A Friend campaign such as the size of TAF button, widget theme and the button usage. For example, I planned to use the TAF method for my WordPress blog, so I selected &#8220;<em>Blog</em>&#8221; from the drop down list.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-01c-Choose-usage.jpg" alt="TAF Choose usage" width="430" height="170" /></p>
<p>Further customization appeared after I chose &#8220;<em>Blog</em>&#8220;. I selected &#8220;<em>WordPress Engine Plugin</em>&#8220;.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-01d-Choose-Blog-Type.jpg" alt="TAF Choose Blog Type" width="370" height="210" /></p>
<p>After finished with the setting up process, I clicked on the &#8220;<em>Get Code</em>&#8221; button. You can check or uncheck the first and third option boxes, but make sure that the second one is checked before you click the button.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-01b-Signup-Get-Code.jpg" alt="TAF Signup - Get Code" width="580" height="400" /></p>
<h3>Installing The WordPress Plugin</h3>
<p>After I hit the &#8220;<em>Get Code</em>&#8220;, a download button appeared. I clicked this &#8220;<em>Get It Now</em>&#8221; button and the WordPress plugin was downloaded to my hard drive.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-01e-Signup-Get-Plugin.jpg" alt="TAF Signup - Get Plugin" width="540" height="220" /></p>
<p>To install the plugin, go to the &#8220;<em>Plugin &#8211; Install Plugins &#8211; Upload</em>&#8221; menu from your WordPress admin area. Then click the &#8220;<em>Choose File</em>&#8221; button, locate the downloaded plugin, and click &#8220;<em>Install now</em>&#8220;.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-02a-Install-Plugins.jpg" alt="TAF Install Plugins" width="580" height="210" /></p>
<p>The final step would be to activate the plugin. You can do this directly after installing it or later on from the plugin page.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-02b-Activate-Plugin.jpg" alt="TAF Activate Plugin" width="580" height="180" /></p>
<h3>Another Point Of View</h3>
<p>So far we have seen the process from web owner point of view. Now let&#8217;s switch our perspective and see things from the visitor&#8217;s side. For example, you visit your friend&#8217;s blog and you want to share an article that you read to your other friends.</p>
<p>If the blog owner use TAF4Free, you will find the button at the end of the article. Hover your mouse over it and a list of available sharing methods will pop up. Click at the one that you want to use.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-03a-TAF-Button-1.jpg" alt="TAF Button-1" width="470" height="200" /></p>
<p>A pop up window will appear focusing to your choice of sharing method. Then you can continue with the sharing process. For example, if you choose &#8220;<em>Facebook</em>&#8220;, all you have to do is click on the &#8220;<em>Share</em>&#8221; button, fill in your login data, and the word is out.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-03b-Share-Via-Facebook.jpg" alt="TAF Share Via Facebook" width="480" height="220" /></p>
<p>Or if you choose &#8220;<em>GMail</em>&#8220;, you can fill in your user name and password before picking people up from your address book and sending them link to the article that you want to share.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/12/TAF-03c-Share-Via-Email.jpg" alt="TAF Share Via Email" width="480" height="250" /></p>
<p>TAF4Free makes it easy for visitors to switch between different sharing methods, so all they have left to do is finding worth sharing materials and share them.</p>
<h3>Content Is Really The King</h3>
<p>But everything goes back to the quality of your content. No matter how easy the sharing method is, nothing is going to work if you have no good quality content that people want to share.</p>
<p>If you give your reader top notch materials, the combination of your good content and TAF4Free will surely help you to spread the word about your website to the world. If one person recommends your web to some of his/her friends, and these friends do the same, you&#8217;ll have viral marketing working for you. Then you can stop worrying about getting readers to your site and focus on creating great materials.</p>
<p>What do you think about TAF4Free? Would you use it to help you spread the buzz about your site? Do you know other similar alternatives? Please share your thoughts using the comment below.</p>
<p>Image credit: <a rel="nofollow" href="http://www.flickr.com/photos/seeminglee/3929959851/">See-ming Lee</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21&amp;title=Spread+The+Word+About+Your+Website+Virally+Using+TAF4Free&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21">Spread The Word About Your Website Virally Using TAF4Free</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/spread-the-word-about-your-website-virally-using-taf4free/2010/12/21/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Customize Your WordPress Administration Area</title>
		<link>http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03</link>
		<comments>http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03#comments</comments>
		<pubDate>Fri, 03 Dec 2010 13:00:21 +0000</pubDate>
		<dc:creator>Soumen Halder</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=25256</guid>
		<description><![CDATA[WordPress is one of the most popular content management systems out there. Thousands of bloggers use WordPress to power their blogs, websites, forums and other online publications. The best thing regarding WordPress is it&#8217;s rich inventory of useful plugins &#8211; there are different types of plugins available for customizing your requirements. Do you know that [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03&amp;title=How+to+Customize+Your+WordPress+Administration+Area&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03">How to Customize Your WordPress Administration Area</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/11/wp-customize-admin-main.jpg" alt="wp-customize-admin-main" title="wp-customize-admin-main" width="200" height="150" class="alignleft size-full wp-image-25347" />WordPress is one of the most popular content management systems out there. Thousands of bloggers use WordPress to power their blogs, websites, forums and other online publications. The best thing regarding WordPress is it&#8217;s rich inventory of useful plugins &#8211; there are different types of plugins available for customizing your requirements.</p>
<p>Do you know that the WordPress administration area can be customized according to your needs? You can hide the features you never use, change the logo in your WordPress login screen and do a lot more creative things right inside your WordPress blog&#8217;s backend.<br />
<span id="more-25256"></span><br />
There are some advantages of customizing WordPress&#8217;s admin section. First, you can remove the features that are not at all required and get rid of unnecessary UI clutter. Second, you can handle permissions and access of sections more easily, if you have more than one user associated with the blog (multi-authored blogs are a good example).</p>
<p>Here are some useful WordPress plugins which can be used to customize your WordPress&#8217;s blog&#8217;s backend:</p>
<h3>Ozh Admin Menu</h3>
<p>The problem with WordPress&#8217;s default navigation structure is that the links are not quickly accessible. You have to click through the small arrow beside each section to expand it and then click the link of the page you want to go to.</p>
<p>If you prefer simple things and want a minimalist navigation in WordPress admin area, install the <a href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/" target="_blank" >Ozh Admin menu WordPress plugin</a>. This plugin changes WordPress navigation structure such that all admin links are available in a neat horizontal drop down menu. Saves a lot of screen space !</p>
<p><img class="size-full wp-image-25264 aligncenter" title="ozh Admin Menu WordPress Plugin for Better Navigation" src="http://imagecdn.maketecheasier.com/2010/11/wp-ozh-admin-menu.png" alt="ozh Admin Menu WordPress Plugin for Better Navigation" width="550" height="313" /></p>
<h3>Adminimize</h3>
<p>If you are the administrator of a multi-authored blog, there are some sections which you may want to hide from specific users or authors. For example: You might want to hide the Post URL slug in the Write Post panel for all authors. The <a href="http://wordpress.org/extend/plugins/adminimize/" target="_blank" >Adminimize</a> plugin let&#8217;s you completely customize which sections, widgets and panels are available to specific users of your blog.</p>
<p><img class="aligncenter size-full wp-image-25271" title="Adminimize Plugin Options - Hide panels from specific users" src="http://imagecdn.maketecheasier.com/2010/11/wp-adminimize-plugin-options.png" alt="Adminimize Plugin Options - Hide panels from specific users" width="550" height="358" /></p>
<p>There are 5 different roles available e.g Administrator, Editor, Author, Contributor and Subscriber. You can select the required checkbox against any link of the WordPress admin area and choose to hide or show it to that specific user role. Should you create new roles later, the selection checkbox for that specific user role will appear in the Adminimize option panel.</p>
<p>Overall, this is a great plugin to customize which functions are available to different users of your blog.</p>
<h3>Admin Quick Menu</h3>
<p>The <a href="http://wordpress.org/extend/plugins/wordpress-admin-quickmenu/" target="_blank">Admin Quick Menu</a> plugin lets you add external links within your WordPress dashboard. You can define a set of custom URL&#8217;s which you want to access without having to leave your WordPress blog&#8217;s backend. Typical examples may be Google Analytics, Google Webmaster tools, Feedburner, Twitter and so on.</p>
<p><img class="aligncenter size-full wp-image-25278" title="Wordpress admin Menu Settings" src="http://imagecdn.maketecheasier.com/2010/11/wp-admin-menu-settings.png" alt="Wordpress admin Menu Settings" width="517" height="323" /></p>
<p>The best thing regarding this plugin is that you can choose which user levels have the ability to access the custom external links. For example: You can choose to let only the administrator have access to the external links, pretty handy when you want to keep an eye on external services directly within your WordPress administration area.</p>
<h3>Pre Publish Reminder</h3>
<p>The <a href="http://wordpress.org/extend/plugins/pre-publish-reminders/">Pre publish reminder plugin</a> adds a sleek reminder column in WordPress &#8220;Write Post&#8221; panel. This can be used to notify blog authors about important points, notes that they should follow before publishing an article. You can always edit the reminders and format the reminders from &#8220;Manage reminders&#8221; section of WordPress admin area</p>
<p><img class="aligncenter size-full wp-image-25292" title="Pre Publish Reminders in WordPress" src="http://imagecdn.maketecheasier.com/2010/11/wp-pre-publish-reminders.png" alt="Pre Publish Reminders in WordPress" width="561" height="307" /></p>
<h3>Disable Specific Dashboard Widgets</h3>
<p>The first thing which users notice after logging in to WordPress admin area are the dashboard widgets. Although, a user can hide a widget from &#8220;Screen options&#8221; but you can use the following functions to completely remove dashboard widgets within WordPress admin area:</p>
<p><pre lang="php">function remove_dashboard_widgets(){<br />
global$wp_meta_boxes;<br />
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);<br />
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);<br />
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);<br />
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);<br />
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);<br />
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);<br />
}<br />
add_action(&#8216;wp_dashboard_setup&#8217;, &#8216;remove_dashboard_widgets&#8217;);</pre></p>
<p>Just paste the above code in your theme&#8217;s function.php file and the dashboard widgets will be hidden from all users of your blog. You can refer to WordPress&#8217;s <a href="http://codex.wordpress.org/Dashboard_Widgets_API#Advanced:_Removing_Dashboard_Widgets" target="_blank">official documentation article</a> for more information.</p>
<h3>Replace The WordPress logo With your own</h3>
<p>If you want more branding options, it&#8217;s a good idea to replace the WordPress logo with a custom logo of your site. Simply paste the following code in your theme&#8217;s functions.php file:</p>
<p><pre lang="php">add_action(&#8216;admin_head&#8217;, &#8216;my_custom_logo&#8217;);</p>
<p>function my_custom_logo() {<br />
echo &#8216;&lt;style type=&quot;text/css&quot;&gt;<br />
#header-logo { background-image:url(&#8216;.get_bloginfo(&#8216;template_directory&#8217;).&#8217;/images/custom-logo.gif)!important; }<br />
&lt;/style&gt;&#8217;;<br />
}</pre></p>
<p>Remember to save your custom logo image in the theme’s image folder  e.g<em> wp-content/themes/theme-name/images</em> and name it it <em>custom-logo.gif</em>.</p>
<p>Further reading on WordPress customizations:</p>
<ul>
<li><a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">11 ways to secure your WordPress blog</a></li>
<li><a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">8 ways to improve your WordPress blog&#8217;s loading time</a></li>
<li><a href="http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21">9 Plugins which new WordPress users must install on their blogs</a></li>
</ul>
<p>Do let us know your favorite WordPress admin customization in the comments section.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/lsevenoaks/9600541/" target="_blank" >[lee]</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03&amp;title=How+to+Customize+Your+WordPress+Administration+Area&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03">How to Customize Your WordPress Administration Area</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/customize-wordpress-administration-area/2010/12/03/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3 More Ways To Lighten The Load And Speed Up Your WordPress Blog</title>
		<link>http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13</link>
		<comments>http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13#comments</comments>
		<pubDate>Sat, 13 Nov 2010 13:00:16 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=24121</guid>
		<description><![CDATA[From the visitors point of view, light and speedy websites are more likable than the heavy and slow ones because the former will help visitors save money and time. Having a lighter site will also give benefits to the owner as it reduces the storage size and traffic bandwidth that he/she has to pay. Even [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13&amp;title=3+More+Ways+To+Lighten+The+Load+And+Speed+Up+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13">3 More Ways To Lighten The Load And Speed Up Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://imagecdn.maketecheasier.com/2010/11/Speed-Wordpress-logo.jpg" alt="Speed WordPress logo" width="200" height="157" />From the visitors point of view, light and speedy websites are more likable than the heavy and slow ones because the former will help visitors save money and time. Having a lighter site will also give benefits to the owner as it reduces the storage size and traffic bandwidth that he/she has to pay. Even few kilobytes saving of every page size will become a significant amount when you multiply the figure with the number of pages and thousands (or millions) of visits.</p>
<p><a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">W3 Total Cache</a> is one great solution to speed up your WordPress site, but it requires plenty of technical configuration that might put new WP users off. For those who want a turnkey solution, here are some of them that can achieve the same effect without you having to do much tweaking.<br />
<span id="more-24121"></span></p>
<h3>1. Cheating With The Codes</h3>
<p>One of the major problems that can hog down your page load is the code mess &#8211; especially in the absent of a plugin called <a href="http://wordpress.org/extend/plugins/wp-minify/" target="_blank">WP-Minify</a>. Once enabled, this plugin will combine and compress JS and CSS files to improve page load time.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/11/Speed-Wordpress-Install-WP-Minify.jpg" alt="Speed WordPress - Plugin Install - WP Minify" width="580" height="200" /></p>
<p>Here&#8217;s a quote of the developer&#8217;s explanation on how the plugin works:</p>
<blockquote><p>WP Minify grabs JS/CSS files in your generated WordPress page and passes that list to the Minify engine. The Minify engine then returns a consolidated, minified, and compressed script or style for WP Minify to reference in the WordPress header.</p></blockquote>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/11/Speed-Wordpress-WP-Minify-Configuration.jpg" alt="Speed WordPress - WP Minify - Configuration" width="580" height="377" /></p>
<p>The more CSS codes/Java Scripts that you use, the more saving that you can get. You can also exclude some files from the process &#8211; if you really know what you are doing. But please note that this plugin is not for the faint of heart. Playing with codes always comes with some risk.</p>
<h3>2. Cache the whole site</h3>
<p>Another way that you can do to speed up the loading time of your pages/sites is to make the process go to a shorter route. You can do this by creating caches of your pages.</p>
<p>Usually, after a visitor make a page request (read: opening a page), the request will be accepted by the server, then the server will load the data from the database, and back to the server before the client finally get the data (read: the page loaded). The length of these process will result in waiting time for the visitor and bandwidth usage for the web owner.</p>
<p>But if you use caching plugin like <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a> or <a href="http://wordpress.org/extend/plugins/quick-cache/" target="_blank">Quick Cache</a>, the route will be shortened into: visitor request &#8211; server &#8211; back to visitor, because all the data has already been cached and there&#8217;s no need to visit the database to fetch them.</p>
<p>Since <a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">WP Super Cache</a> has been discussed many times before, let&#8217;s look at the alternative: Quick Cache.</p>
<p><img class="aligncenter" src="http://imagecdn.maketecheasier.com/2010/11/Speed-Wordpress-Install-Quick-Cache.jpg" alt="Speed WordPress - Plugin Install - Quick Cache" width="580" height="230" /></p>
<p>The disadvantage is that visitor will not always get the latest version of the page, but that won&#8217;t be a problem unless the page is always updated each and every second (which is rarely happened). The advantage of this method is a huge saving on bandwidth and server resource, so much that this is a favorite way for blog master to survive from Digg attack.</p>
<p>Again, this one is also not for the faint hearted as there are so much settings that one should go through. Beginners are advised not to go beyond the &#8220;<em>Easy</em>&#8221; step.</p>
<p><img class="aligncenter" title="Speed WordPress - Quick Cache Options" src="http://imagecdn.maketecheasier.com/2010/11/Speed-Wordpress-Quick-Cache-Options.jpg" alt="Speed-Wordpress-Quick-Cache-Options" width="580" height="345" /></p>
<h3>3. Flirting With The Image Files</h3>
<p>And the major bloat to every blog is images. Most blogger will just link videos from video hosting sites like YouTube, but images are commonly uploaded to the blog server. Ten images of 100 Kb on a page equals to 1 Mb of loading size.</p>
<p>That&#8217;s why it&#8217;s highly advisable to always reduce the size of every image that you want to upload to your blog. There are many image manipulator that you can use to achieve this such as <a href="http://developer.yahoo.com/yslow/smushit/" target="_blank">SmushIt</a> &#8211; part of <a href="https://addons.mozilla.org/en-US/firefox/addon/5369" target="_blank">YSlow Firefox addon</a>, <a href="http://imageoptim.pornel.net/" target="_blank">ImageOptim</a> for Mac, and Photoshop.</p>
<p>But even the reduced-size images still eat up bandwidth. Here&#8217;s the part where <a href="http://maketecheasier.com/tags/dropbox/">Dropbox</a> comes to the rescue. Instead of uploading images directly to your blog server, you could put your images in your Dropbox public folder and link the post to that image. This method means more work but worth the hassle, because it will decrease bandwidth use and improve loading time. Plus, if you have to move your blog to another host later, you will save a lot of headache as you don&#8217;t have to move your images.</p>
<p>As I&#8217;ve mentioned before, these are only few of the many ways that you can use to lighten the load and speed up your WordPress blog. Also check out our other article on <a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">speeding up your WordPress blog</a>. If you know other methods, please share them using the comment below.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/thatguyfromcchs08/4292628703/" target="_blank">Nathan Eal Photography</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13&amp;title=3+More+Ways+To+Lighten+The+Load+And+Speed+Up+Your+WordPress+Blog&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13">3 More Ways To Lighten The Load And Speed Up Your WordPress Blog</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Automatically Empty Your Trash in WordPress [Quick Tips]</title>
		<link>http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28</link>
		<comments>http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28#comments</comments>
		<pubDate>Thu, 28 Oct 2010 19:00:23 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[trash]]></category>
		<category><![CDATA[wp-config]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=23610</guid>
		<description><![CDATA[In WordPress, there is this &#8220;Trash&#8221; feature that keep your deleted articles (and comments) in the recycle bin until you go into the bin and delete them permanently. This is an useful feature as it prevents you from deleting any posts/comments accidentally. However, if you don&#8217;t have the habit of clearing your trash regularly, it [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28&amp;title=How+to+Automatically+Empty+Your+Trash+in+WordPress+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28">How to Automatically Empty Your Trash in WordPress [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-trash-main.jpg" alt="wp-trash-main" title="wp-trash-main" width="200" height="198" class="alignleft size-full wp-image-23620" />In WordPress, there is this &#8220;Trash&#8221; feature that keep your deleted articles (and comments) in the recycle bin until you go into the bin and delete them permanently. This is an useful feature as it prevents you from deleting any posts/comments accidentally. However, if you don&#8217;t have the habit of clearing your trash regularly, it would pile up with useless articles, which in turn translate to bigger database size and slower site loading.</p>
<p>Here&#8217;s a quick and simple way to configure your WordPress to automatically clear the trash on a regular basis:<br />
<span id="more-23610"></span><br />
1. Using a FTP application (such as Filezilla), download the <em>wp-config.php</em> file from your server. </p>
<p>2. Open the <em>wp-config.php</em> file with a text editor and insert the following code to the end of the file:</p>
<p><pre lang="php">define(&#8216;EMPTY_TRASH_DAYS&#8217;, X );</pre></p>
<p>where &#8216;X&#8217; is the interval (in days) the trash will auto-empty itself.</p>
<p>For example, if you want the trash to auto-empty itself every 7 days, the code will be</p>
<p><pre lang="php">define(&#8216;EMPTY_TRASH_DAYS&#8217;, 7 );</pre></p>
<h3>Disable the trash feature</h3>
<p>In some cases, you might want to disable the trash feature altogether. You can do this by setting the number of day to 0. The code become:</p>
<p><pre lang="php">define(&#8216;EMPTY_TRASH_DAYS&#8217;, 0 );</pre></p>
<p>That&#8217;s it.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28&amp;title=How+to+Automatically+Empty+Your+Trash+in+WordPress+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28">How to Automatically Empty Your Trash in WordPress [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/automatically-empty-your-trash-in-wordpress/2010/10/28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Plugins New WordPress Users Must Install on Their Blogs</title>
		<link>http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21</link>
		<comments>http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21#comments</comments>
		<pubDate>Thu, 21 Oct 2010 21:00:36 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[askimet]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=23227</guid>
		<description><![CDATA[Seasoned WordPress users will have no problem finding and installing the plugins they need, but for newbies, or inspiring bloggers to be, finding the right plugins can be a daunting task. To help new WordPress users to get use to their blogs quickly, here are 9 plugins that I would strongly recommend any new user [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21&amp;title=9+Plugins+New+WordPress+Users+Must+Install+on+Their+Blogs&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21">9 Plugins New WordPress Users Must Install on Their Blogs</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-plugins.jpg" alt="wp-plugins" title="wp-plugins" width="240" height="126" class="alignleft size-full wp-image-23241" />Seasoned WordPress users will have no problem finding and installing the plugins they need, but for newbies, or inspiring bloggers to be, finding the right plugins can be a daunting task. To help new WordPress users to get use to their blogs quickly, here are 9 plugins that I would strongly recommend any new user to install.<br />
<span id="more-23227"></span></p>
<h3>1. Askimet</h3>
<p>Askimet is the plugin for combating comment spam on WordPress blog. It scans your comments and check with their server to determine if that comment is legitimate or spam. If it is spam, it will send to the spam folder and never publish it on the frontend. This is one of the plugin that is going to save you ton of time.</p>
<p>The Askimet plugin comes with the default installation of WordPress. All you have to do is to go to the Plugins section to activate it. You will also need to register an account with <a href="http://wordpress.com" target="_blank" >WordPress.com</a> to obtain the API key.</p>
<p><strong>Related reading</strong>: <a href="http://maketecheasier.com/5-ways-to-reduce-comment-spam-on-wordpress-blogs/2010/03/17">5 Ways To Reduce Comment Spam On WordPress Blogs</a></p>
<h3>2. Google Analytics</h3>
<p>Google Analytics is a tracking software that monitors your site&#8217;s traffic, visitors behavior and the performance of your site. It is free to use the service, but you need to setup an account at <a href="http://www.google.com/analytics/" target="_blank" >Google Analytics site</a> and insert the tracking code into your site. </p>
<p>Personally, I would prefer to hard code the Google analytics tracking code into the WordPress theme file to reduce server overhead. However for those who are not proficient in coding, the best way to insert the tracking code is via a Google Analytics plugin. The best one that I have used before is <a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/" target="_blank" >Google Analytics for WordPress</a>. It is simple to use, yet highly configurable for advanced users.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-google-analytics.png" alt="wp-google-analytics" title="wp-google-analytics" width="577" height="412" class="aligncenter size-full wp-image-23231" /></p>
<h3>3. XML Sitemap</h3>
<p>Your XML sitemap is the tool that help Google to index your site faster. Unless you don&#8217;t want to be friends with the big G, the XML sitemap is an absolute must. In WordPress, you can use the <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank" >Google Sitemap Generator</a> plugin to auto-generate a new XML sitemap whenever you update your blog. In addition, the sitemap generator plugin notifies Google, Yahoo and Bing when a new sitemap is created. </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-xml-sitemap.png" alt="wp-xml-sitemap" title="wp-xml-sitemap" width="577" height="281" class="aligncenter size-full wp-image-23232" /></p>
<h3>4. Backup Database Manager</h3>
<p>Whatever you do on your computer, be it online or offline, you must always remember to <strong>backup</strong>. Similarly, in WordPress, it is a <em>must</em> for you to regularly backup your database. </p>
<p>Two backup plugins that I strongly recommend are <a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank" >WP-DB-backup</a> and <a href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank" >WP-DB manager</a>.  WP-DB-Backup is simple to use. You can backup your database and download to your computer or schedule it to run a backup on a regular basis. On the other hand, WP-DB manager comes with more database optimization option, but it can be an overkill for those who have no use for these functions.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-backup.png" alt="wp-backup" title="wp-backup" width="394" height="476" class="aligncenter size-full wp-image-23233" /></p>
<p><strong>Related reading</strong>: <a href="http://maketecheasier.com/8-useful-tricks-to-clean-up-streamline-your-wordpress-database/2009/02/17">8 Useful Tricks To Clean Up &#038; Streamline Your WordPress Database</a></p>
<h3>5. Login Lockdown</h3>
<p><a href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank" >Login Lockdown</a> is a security plugin that prevents people from hacking into your account via the brute force password discovery method.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-login-lockdown.png" alt="wp-login-lockdown" title="wp-login-lockdown" width="392" height="185" class="aligncenter size-full wp-image-23235" /></p>
<p><strong>Note</strong>: Installing Login Lockdown doesn&#8217;t mean your WP site is completely secured. You shouldn&#8217;t neglect other form of security measure too.</p>
<p><strong>Related reading</strong>: <a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12">11 Ways To Secure Your WordPress Blog</a></p>
<h3>6. Contact Form</h3>
<p>While WordPress is a great CMS for blogging, it doesn&#8217;t come with a built-in contact form that you can use out of the box. Personally, I would prefer <a href="http://wordpress.org/extend/plugins/contact-form-7/" target="_blank" >Contact Form 7</a> or <a href="http://wordpress.org/extend/plugins/mm-forms-community/">MM Forms Community</a> (a derivative plugin from Contact Form 7). Contact Form 7 is much easier to use, but MM Forms Community comes with the option to save the contact form result to database. </p>
<p>Another contact form plugin that you can consider is <a href="http://www.deliciousdays.com/cforms-plugin/" target="_blank" >cforms II</a>. It is a versatile form generator that can be used for many purposes, including contact form, tell a friend form, feedback form etc.</p>
<p><strong>Note</strong>: If you are looking for the best form generator plugin and have some money to spare, then <a href="http://maketecheasier.com/a/gravityforms/" target="_blank" >Gravity Forms</a> is the absolute best. </p>
<h3>7. Platinum SEO Pack</h3>
<p>As its name implies, <a href="http://wordpress.org/extend/plugins/platinum-seo-pack/" target="_blank" >Platinum SEO Pack</a> help you to take care of your SEO matters so that you just have to focus on the writing. This plugin will help you to rewrite your title in the most suitable way for Google to index. You can also insert/edit your own title and keywords.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-platinum-seo.png" alt="wp-platinum-seo" title="wp-platinum-seo" width="577" height="544" class="aligncenter size-full wp-image-23237" /></p>
<p><strong>Note</strong>: Once again, if you value quality and have some money to spare each month, I strongly encourage the use of <a href="http://maketecheasier.com/a/scribeseo/" target="_blank" >Scribe SEO</a> plugin which will bring your writing and SEO to a whole new level. </p>
<h3>8. W3 Total Cache</h3>
<p>I have discussed in length about the <a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank" >importance of W3 total cache</a> to aid in the performance of your site. If you want to have a stable site that loads very fast, you must install <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank" >W3 Total Cache plugin</a>. One thing though, the configuration can be rather technical. Consider yourself warned.</p>
<h3>9. WpTouch</h3>
<p>As mobile device getting more and more popular, implementing a mobile theme (a WordPress theme that is optimized for the mobile devices) is a must. The best way to implement it without having to touch a single code is via the <a href="http://wordpress.org/extend/plugins/wptouch/" target="_blank" >WP Touch</a> plugin. </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/wp-mobile-theme.png" alt="wp-mobile-theme" title="wp-mobile-theme" width="320" height="341" class="aligncenter size-full wp-image-23239" /></p>
<p>Did I miss out anything?</p>
<p><strong>PS</strong>: Don&#8217;t forget to check out our <a href="http://maketecheasier.com/category/internet-tech/wordpress">WordPress</a> section for tons of WordPress tips/tricks</p>
<p>Image credit: <a href="http://www.flickr.com/photos/smemon/" target="_blank" >smemon87</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21&amp;title=9+Plugins+New+WordPress+Users+Must+Install+on+Their+Blogs&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21">9 Plugins New WordPress Users Must Install on Their Blogs</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/9-plugins-new-wordpress-users-must-install-on-their-blogs/2010/10/21/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Quickly Build A Professional Website Without Being a Coding Expert</title>
		<link>http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17</link>
		<comments>http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17#comments</comments>
		<pubDate>Sun, 17 Oct 2010 12:00:47 +0000</pubDate>
		<dc:creator>Trevor Dobrygoski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[hosted]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[site builder]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[weebly]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=22994</guid>
		<description><![CDATA[Have you ever wanted to make a website for an event or special occasion? A website can be an inconvenience to build for a one time use. Weebly has you covered. The drag and drop nature Weebly uses to let you build your site is very easy to use. Even if you are an extreme [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17&amp;title=How+to+Quickly+Build+A+Professional+Website+Without+Being+a+Coding+Expert&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17">How to Quickly Build A Professional Website Without Being a Coding Expert</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-23002" title="weebly - logo" src="http://imagecdn.maketecheasier.com/2010/10/weebly-logo.png" alt="weebly-logo" width="235" height="87" />Have you ever wanted to make a website for an event or special occasion? A website can be an inconvenience to build for a one time use. <a href="http://weebly.com/" target="_blank">Weebly</a> has you covered.</p>
<p>The drag and drop nature Weebly uses to let you build your site is very easy to use. Even if you are an extreme novice, you can easily build a site in minutes. You start with a basic template, then add elements to it by dragging items where you want them to be.<br />
<span id="more-22994"></span></p>
<h3>Weebly hosting options</h3>
<p>You have the choice of a free hosted option with a <em>.weebly.com</em> after your site&#8217;s name. You can also choose to use a domain name you already own or register a name. Having these options is great for the beginner. You can make a simple site using the hosted option, then when you are comfortable building a site, you can register your own URL.</p>
<p><img class="aligncenter size-full wp-image-23001" title="weebly - hosting options" src="http://imagecdn.maketecheasier.com/2010/10/weebly-hosting-options.png" alt="weebly-hosting-options" width="480" height="437" /></p>
<h3>Weebly site builder</h3>
<p>This is the cool part of Weebly. Like I mentioned above, you start with a basic template site then make changes by dragging and dropping things where you want them. Much like WordPress.com, Blogger and others, you have lots of choices for the themes and optional elements.</p>
<p><img class="aligncenter size-full wp-image-23003" title="weebly - main page defatult" src="http://imagecdn.maketecheasier.com/2010/10/weebly-main-page-defatult.png" alt="weebly-main-page-defatult" width="480" height="304" /></p>
<p>The way the site builder is laid out makes it easy to see what your options are. If you have made a site on Blogger, you will see some similarities, but I thing Weebly is a bit less intimidating.</p>
<h3>Weebly site elements</h3>
<p>Using other site building platforms, it can be a challenge to figure out how to add media or monetize your site. When using Weebly to build your site, you can drag the video option where ever you want the video to appear. If you want to put ads on your site, you can drag the Adsense element into the area where you&#8217;d like the ads to appear.</p>
<p>You have numerous options to modify your site. You can choose from monetizing it with products, Adsense, or adding in HTML code for your Amazon affiliate account.</p>
<p><img class="aligncenter size-full wp-image-22997" title="weebly - adsense" src="http://imagecdn.maketecheasier.com/2010/10/weebly-adsense.png" alt="weebly-adsense" width="480" height="402" /></p>
<p>Multimedia is just as easy to add. You can add Youtube videos by dragging the Youtube element where you want it then pasting the URL to the video into the designated spot.</p>
<h3>Weebly Blog</h3>
<p>If you want to build a blog or add a news section to your site, you can do this as well. Go to the <em>Pages</em> tab. Adding a blog page is as simple as clicking <em>New blog</em>.</p>
<p>In the Stats tab, you can see an approximate number of visitors to your site, along with being able to see replies to any form entries and  moderate any blog comments.</p>
<p><img class="aligncenter size-full wp-image-22998" title="weebly - blog" src="http://imagecdn.maketecheasier.com/2010/10/weebly-blog.png" alt="weebly-blog" width="480" height="237" /></p>
<h3>Weebly Pro</h3>
<p>Like many free sites, Weebly also have an upgrade available for a cost. The <a href="https://secure.weebly.com/weebly/apps/purchasePage.php?type=Weebly.proAccount&amp;s=www.weebly.com&amp;message=&amp;refer=&amp;page=userHome.php?page=account" target="_blank" >upgrade to the pro version</a> unlocks site elements and allows for greater customizing of the site. The cost is pretty low if you need the extra features the upgrade opens up.</p>
<h3>Conclusion</h3>
<p>I think Weebly is a great option for the beginner looking to learn how to build a site. I also see Weebly as a great option for building a site for an event. The sites are extremely easy to start and build. You can have a really nice looking hosted site up and running in less than 30 minutes with no knowledge of site building.</p>
<p>Other than WordPress.com and Blogger, what other sites do you know that are similar to Weebly?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17&amp;title=How+to+Quickly+Build+A+Professional+Website+Without+Being+a+Coding+Expert&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17">How to Quickly Build A Professional Website Without Being a Coding Expert</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/how-to-quickly-build-a-professional-website-without-being-a-coding-expert/2010/10/17/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Migrate From WordPress.com to Self-hosted WordPress</title>
		<link>http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12</link>
		<comments>http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12#comments</comments>
		<pubDate>Thu, 12 Aug 2010 21:00:17 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[self hosted]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[wordpress.com]]></category>
		<category><![CDATA[wordpress.org]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=19565</guid>
		<description><![CDATA[I know that this topic has been mentioned a thousand and one time in the blogosphere, but still, there are many people asking me how to do it the easy way. Since this site is about making tech easier, I have decided to come up with a comprehensive and easy to follow guide for those [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12&amp;title=How+to+Migrate+From+WordPress.com+to+Self-hosted+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12">How to Migrate From WordPress.com to Self-hosted WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-19581" title="migratewp-main" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-main.png" alt="migratewp-main" width="200" height="150" />I know that this topic has been mentioned a thousand and one time in the blogosphere, but still, there are many people asking me how to do it <em>the easy way</em>. Since this site is about making tech easier, I have decided to come up with a comprehensive and easy to follow guide for those who have decided to jump the ship.</p>
<p>For those who have no idea about <a href="http://maketecheasier.com/understanding-wordpress-self-hosted-wordpress-vs-wordpresscom/2008/03/20">the differences between WordPress.com and self hosted WordPress, read this article first</a> before you proceed.<br />
<span id="more-19565"></span></p>
<h3>First thing first</h3>
<p>Before you start the migration from WordPress.com to self hosted WordPress, you will need to have:</p>
<ul>
<li>a domain name</li>
<li>a web hosting account and</li>
<li>the WordPress software already installed.</li>
</ul>
<p>If you do not have any of the three, go to <a href="http://maketecheasier.com/a/hostgator" target="_blank">Hostgator</a> and register for a domain name and a webhost account. (The <em>baby</em> plan is a good buy. Don&#8217;t forget to use the coupon code <strong>MAKETECHEASIER</strong> to get first month off).</p>
<p>Once you have registered for your domain name and web hosting plan, you will receive an email with your login info.</p>
<p><img class="aligncenter size-full wp-image-19570" title="migratewp-hostgator-email" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-hostgator-email.png" alt="migratewp-hostgator-email" width="449" height="399" /></p>
<p>Click on the cPanel link and login with your username and password.</p>
<p>Once you are in the cPanel dashboard, scroll down till you see the <em>Fantastico</em> icon. Click on it.</p>
<p>On the left pane, click on the WordPress link</p>
<p><img class="aligncenter size-full wp-image-19571" title="migratewp-fantastico-wordpress" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-fantastico-wordpress.png" alt="migratewp-fantastico-wordpress" width="447" height="198" /></p>
<p>You will be asked to enter login name, password and your email address. In a few clicks, the WordPress software will be installed in your server.</p>
<p>You can test it by going to the URL<em> http://your-domain.com/wp-login.php</em></p>
<h3>Migrating from WordPress.com</h3>
<p>The next thing that you are going to do is to export all your content from your WordPress.com site.</p>
<p>Login to  your WordPress.com account and go to <em>Tools -&gt; Export</em></p>
<p><img class="aligncenter size-full wp-image-19575" title="migratewp-wp-export" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-wp-export.png" alt="migratewp-wp-export" width="173" height="139" /></p>
<p>Click the <em>Download Export File</em> button to export the content. It should generate a XML file.</p>
<p><img class="aligncenter size-full wp-image-19576" title="migratewp-export-xml" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-export-xml.png" alt="migratewp-export-xml" width="413" height="478" /></p>
<h3>Importing to the content to your self hosted WordPress site</h3>
<p>Login to your self hosted WordPress site and go to <em>Tools -&gt; Import.</em></p>
<p>Click on the WordPress link.</p>
<p><img class="aligncenter size-full wp-image-19577" title="migratewp-import-xml1" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-import-xml1.png" alt="migratewp-import-xml" width="369" height="390" /></p>
<p>Upload the XML file. It will then prompt you to map the posts author to the new account&#8217;s author. Remember to check the box &#8220;Download and import file attachments&#8221;</p>
<p><img class="aligncenter size-full wp-image-19578" title="migratewp-import-assign-author" src="http://imagecdn.maketecheasier.com/2010/08/migratewp-import-assign-author.png" alt="migratewp-import-assign-author" width="340" height="311" /></p>
<p><strong>Note</strong>: <em>If  your XML file is more than 2MB in size, you might face problem uploading it to the server (most servers only allow 2MB of file upload). You will have to submit a ticket to your web host and get them to increase the file upload limit.</em></p>
<h3>Redirecting readers from WordPress.com to self hosted WordPress site</h3>
<p>You have migrated your content over, don&#8217;t you want to migrate your readers over too?</p>
<p>Currently there is no free way to do this. The only way to redirect your readers is to use the domain mapping method which will cost you $9.97 per year.</p>
<p>You can head on to the WordPress support site for <a href="http://en.support.wordpress.com/domain-mapping/map-existing-domain/" target="_blank">detailed instructions</a> to map the WordPress.com site to your domain. In general, you need to:</p>
<ul>
<li>change the nameserver of your domain to point to the WordPress.com server</li>
<li>Add your domain name to your WordPress.com site in the <em>Settings -&gt; Domains</em> section (This will require you to pay an annual fee of $9.97).</li>
<li>Change the nameserver of your domain back to its original setting.</li>
</ul>
<p>With that, any readers arriving at your WordPress.com site will be redirected to your self hosted WordPress site. You get to keep your readers as well as your search engine ranking.</p>
<p>That&#8217;s it. If you have any questions, feel free to shoot them in the comments.<br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12&amp;title=How+to+Migrate+From+WordPress.com+to+Self-hosted+WordPress&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12">How to Migrate From WordPress.com to Self-hosted WordPress</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/migrate-from-wordpresscom-to-self-hosted-wordpress/2010/08/12/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

