<?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/category/internet-tech/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 Schedule Database Backup Using Cron Job</title>
		<link>http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25</link>
		<comments>http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25#comments</comments>
		<pubDate>Mon, 25 Jul 2011 14:58:38 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cron jobs]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=35686</guid>
		<description><![CDATA[For backing up of your WordPress database, there are plenty of plugins around that can get the job done. Some of them backup only your database while others backup the whole WP directory. If you have used WordPress long enough, you will realize that these plugins are not reliable. They will work one day and [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25" 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/schedule-database-backup-using-cron-job/2011/07/25" 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/schedule-database-backup-using-cron-job/2011/07/25&amp;title=How+to+Schedule+Database+Backup+Using+Cron+Job&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/schedule-database-backup-using-cron-job/2011/07/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25">How to Schedule Database Backup Using Cron Job</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/backup-key.jpg" alt="backup-key" title="backup-key" width="200" height="151" class="alignleft size-full wp-image-35816" />For backing up of your WordPress database, there are plenty of plugins around that can get the job done. Some of them backup only your database while others backup the whole WP directory. If you have used WordPress long enough, you will realize that these plugins are not reliable. They will work one day and fail another day, for thousand and one reasons. It could be that they are not compatible with the new WordPress version that you have upgraded to, or that they are conflicting with a newly activated plugin. As in my case, it could also because your database is getting too big for them to handle. </p>
<p>Whatever the reasons, rather than relying on plugins, a better alternative is to use a cron job in your server and schedule it to backup your database everyday.<br />
<span id="more-35686"></span><br />
<strong>Note</strong>: <em>The following instruction can be used to backup any database. The only requirement is that you are using a Linux server to host your files.</em></p>
<p>Here is how you do it:</p>
<p>1. Login to your web host control panel. If you are using cPanel, look for a Cron Job icon.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/07/cron-cpanel.png" alt="cron-cpanel" title="cron-cpanel" width="528" height="186" class="aligncenter size-full wp-image-35808" /></p>
<p>2. You can set the time and frequency to backup the database. Under the command field, copy and paste the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysqldump <span style="color: #660033;">--opt</span> <span style="color: #660033;">-Q</span> <span style="color: #660033;">-u</span> dbusername <span style="color: #660033;">--password</span>=dbpassword dbname <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>path-to-store-the-backup-file<span style="color: #000000; font-weight: bold;">/</span>db_backup.sql.gz</pre></div></div>

<ul>
<li>Replace <em>dbusername</em> with the database user</li>
<li>Replace <em>dbpassword</em> with the database user password</li>
<li>Replace <em>dbname</em> with the database that you are backing up</li>
<li>Replace the <em>path-to-store-the-backup-file</em> to the file path in your server where you want to save the backup</li>
</ul>
<p><strong>Note</strong>: <em>In some server, you might need to put a pair of single quote around the dbpassword for it to work. For example: </em></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysqldump <span style="color: #660033;">--opt</span> <span style="color: #660033;">-Q</span> <span style="color: #660033;">-u</span> dbusername <span style="color: #660033;">--password</span>=<span style="color: #ff0000;">'dbpassword'</span> dbname <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>path-to-store-the-backup-file<span style="color: #000000; font-weight: bold;">/</span>db_backup.sql.gz</pre></div></div>

<h2>Email yourself the database</h2>
<p>Storing the database on your server could take up plenty of storage space. One way you can do is to email the backup file to yourself. </p>
<p>1. Download <a href="http://mte.gs/qQm2lT">this php script</a>.</p>
<p>2. Extract the zip file and open the backup.php with a text editor. </p>
<p>3. Change the database detail:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$dbhost</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;localhost&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// usually localhost</span>
<span style="color: #000088;">$dbuser</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dbuser&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//enter your database username here</span>
<span style="color: #000088;">$dbpass</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dbpass&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//enter your database password here</span>
<span style="color: #000088;">$dbname</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dbname&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// enter your database name here</span>
<span style="color: #000088;">$sendto</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Send To &lt;sendto@email.com&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//the email address to send the database to</span>
<span style="color: #000088;">$sendfrom</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Send From &lt;sendfrom@email.com&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sendsubject</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Daily Database Backup&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//the subject of the email</span>
<span style="color: #000088;">$bodyofemail</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Here is the daily backup of my database.&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>4. Save the file. Upload the whole folder to your server. <strong>Note</strong>: <em>The folder includes a .htaccess file to prevent any access from the browser. If you want to access from the browser, remove the .htaccess file.</em></p>
<p>5. In the cron job section of the cPanel, enter the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">php <span style="color: #660033;">-q</span> <span style="color: #000000; font-weight: bold;">/</span>path-to-the-php-script-folder<span style="color: #000000; font-weight: bold;">/</span>backup.php</pre></div></div>

<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/schedule-database-backup-using-cron-job/2011/07/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25" 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/schedule-database-backup-using-cron-job/2011/07/25" 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/schedule-database-backup-using-cron-job/2011/07/25&amp;title=How+to+Schedule+Database+Backup+Using+Cron+Job&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/schedule-database-backup-using-cron-job/2011/07/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/schedule-database-backup-using-cron-job/2011/07/25">How to Schedule Database Backup Using Cron Job</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/schedule-database-backup-using-cron-job/2011/07/25/feed</wfw:commentRss>
		<slash:comments>9</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 Add Google +1 Button to Your Website</title>
		<link>http://maketecheasier.com/add-google-1-to-website/2011/06/02</link>
		<comments>http://maketecheasier.com/add-google-1-to-website/2011/06/02#comments</comments>
		<pubDate>Thu, 02 Jun 2011 23:58:48 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[+1]]></category>
		<category><![CDATA[button]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33901</guid>
		<description><![CDATA[Google introduced the +1 button not long ago. While performing a search at Google, this +1 button allows you to vote up/down the search results. We covered this piece news before and in it, we also mentioned that Google will introduce the +1 button to all website in the future. Well, that future is today. [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02" 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-google-1-to-website/2011/06/02" 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-google-1-to-website/2011/06/02&amp;title=How+to+Add+Google+%2B1+Button+to+Your+Website&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-google-1-to-website/2011/06/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-google-1-to-website/2011/06/02">How to Add Google +1 Button to Your Website</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/googleplusone2.jpg" alt="googleplusone2" title="googleplusone2" width="180" height="137" class="alignleft size-full wp-image-33905" />Google introduced the +1 button not long ago. While performing a search at Google, this +1 button allows you to vote up/down the search results. We <a href="http://maketecheasier.com/things-you-need-to-know-about-google-1/2011/03/30/">covered this piece news</a> before and in it, we also mentioned that Google will introduce the +1 button to all website in the future. Well, <a href="http://googlewebmastercentral.blogspot.com/2011/06/add-1-to-help-your-site-stand-out.html">that future is today</a>. From today onward, you can place the +1 button on your website and allow your readers to vote up the story.<br />
<span id="more-33901"></span></p>
<h2>What&#8217;s the implication of the +1 button? Is it just another button?</h2>
<p>On the surface, the +1 button is just another button for you to embed on your site. However, it is one important button that you want to have on your site, since it can potentially affect your search engine result. If you have a relatively unknown blog and you have plenty of people +1&#8242;d a particular post, that post could potentially score well in Google search and bring you tons and tons of traffic. Unless you don&#8217;t depend on Google for traffic (anyone who said No will be lying), you got to pay attention to this +1 button.</p>
<h2>Implement +1 button to your website</h2>
<p>The implementation button is simple. You just need to insert two line of codes to your HTML or theme file. </p>
<p>1. Insert the following javascript code to your <code>&lt;head&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 type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://apis.google.com/js/plusone.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>2. Insert the following tag to the place where you want the button to appear.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;g:plusone&gt;&lt;/g:plusone&gt;</pre></div></div>

<p>That &#8216;s it.</p>
<p><strong>For WordPress</strong></p>
<p>As of this post, there are no plugins for adding the +1 button yet (but I am sure it will be available very soon). To add the +1 button, in your themes folder, open the <code>header.php</code> file. Insert the javascript code to the <code>&lt;head&gt;</code> tag</p>
<p>Open your <em>single.php</em> or <em>index.php</em>, and place the <code>&lt;g:plusone&gt;&lt;/g:plusone&gt;</code> to the place where you want it to appear.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/plus1-button-code.png" alt="plus1-button-code" title="plus1-button-code" width="600" height="401" class="aligncenter size-full wp-image-33903" /></p>
<h2>Parameter</h2>
<p>There are several parameters that you can use. </p>
<p><strong>Size of the button</strong>: The default is &#8220;<em>standard</em>&#8220;, which is 24px tall. You can choose &#8220;small&#8221; (15px), &#8220;medium&#8221; (20px) or &#8220;tall&#8221; (60px).</p>
<p><strong>Include count</strong>: The default is set to &#8220;true&#8221;. You can turn it off if you don&#8217;t want the +1&#8242;d count to appear.</p>
<p><strong>URL (href)</strong>: By default, the button will grab the URL of the existing page, but you can specify your own URL with the parameter <code>href="your-url-here"</code>.</p>
<h2>Points to note when adding the +1 button</h2>
<p>1. +1 is a public action, so you should add the button only to public, crawlable pages on your site. If you have a password protected page, or a members only forum, do not use this button. Once you add the button, Google may crawl or recrawl the page, and store the page title and other content, in response to a +1 button impression or click.</p>
<p>2. You can include multiple +1 button on a page, but it is best to add the URL parameter to the code so it can identify the correct link for each button.</p>
<p>3. The +1 button is available in 40 languages. The default is English. If your site is not in English, do go to the Google +1 site to grab the code in your specified language.</p>
<p>For more info, check out the <a href="http://www.google.com/webmasters/+1/button/">Google +1 button site</a> and the <a href="https://www.google.com/support/webmasters/bin/answer.py?hl=en&#038;answer=1140194">FAQ site</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-google-1-to-website/2011/06/02" 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-google-1-to-website/2011/06/02" 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-google-1-to-website/2011/06/02&amp;title=How+to+Add+Google+%2B1+Button+to+Your+Website&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-google-1-to-website/2011/06/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-google-1-to-website/2011/06/02">How to Add Google +1 Button to Your Website</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-google-1-to-website/2011/06/02/feed</wfw:commentRss>
		<slash:comments>13</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>How to Add Google Analytics&#8217;s Site Speed Tracking Feature to Your WordPress Site</title>
		<link>http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14</link>
		<comments>http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14#comments</comments>
		<pubDate>Sat, 14 May 2011 14:58:08 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[loading speed]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=33149</guid>
		<description><![CDATA[Google has recently added a new feature into its Analytics software, enabling you to track your website loading speed now. If you are not aware, in its attempt to make the web faster, Google has launched a series of tools to help webmasters improve their site speed. There is the Google Instant where users can [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" 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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" 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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14&amp;title=How+to+Add+Google+Analytics%26%238217%3Bs+Site+Speed+Tracking+Feature+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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14">How to Add Google Analytics&#8217;s Site Speed Tracking Feature 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/ga-icon.jpg" alt="ga-icon" title="ga-icon" width="200" height="169" class="alignleft size-full wp-image-33160" />Google has recently added a new feature into its Analytics software, enabling you to <a href="http://analytics.blogspot.com/2011/05/measure-page-load-time-with-site-speed.html">track your website loading speed</a> now. If you are not aware, in its attempt to make the web faster, Google has launched a series of tools to help webmasters improve their site speed. There is the <strong>Google Instant</strong> where users can find what they want even before they finished typing; <strong>Instant Preview</strong> to enable users to preview the site from the search result, <a href="https://code.google.com/speed/page-speed/">Page Speed</a> Chrome extension that runs performance tests based on a set of best practices known to reduce page load time and now the <strong>Site Speed Report</strong>.<br />
<span id="more-33149"></span></p>
<h2>Why is there a need for a faster site?</h2>
<p>Rather than discussing the benefits, let&#8217;s talk about the disadvantages. A slow loading site can affect the user experience of your visitors. Most people don&#8217;t wait more than 10 seconds for the site to load. If your web page does not load up in 3 seconds, they will leave.</p>
<p>Additionally, a slow landing page can also impact your conversion rate and also ranking in Google search. If you want to have a high ranking (in Google search results), you got to have a fast loading site. </p>
<p><!--adsense#468--></p>
<h2>Adding the Analytics Site Speed tracking feature manually</h2>
<p>The new site speed tracking feature tracks your site loading speed and allows you to find out which page is fast/slow, how does it varies across geographies or browsers. </p>
<p>If you are using WordPress and you Google Analytics code was added manually, you just have to insert one more line of code to implement the site speed tracking feature.</p>
<p>Open your theme file where you place the Google Analytics code (most probably is the <code>header.php</code>). Insert the code</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">_gaq.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'_trackPageLoadTime'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>under the line</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"> _gaq.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'_trackPageview'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>The resulting code will be:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
 <span style="color: #003366; font-weight: bold;">var</span> _gaq <span style="color: #339933;">=</span> _gaq <span style="color: #339933;">||</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
 _gaq.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'_setAccount'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'UA-XXXXX-X'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 _gaq.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'_trackPageview'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 _gaq.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'_trackPageLoadTime'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #003366; font-weight: bold;">var</span> ga <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'script'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ga.<span style="color: #660066;">type</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'text/javascript'</span><span style="color: #339933;">;</span> ga.<span style="color: #660066;">async</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
   ga.<span style="color: #660066;">src</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'https:'</span> <span style="color: #339933;">==</span> document.<span style="color: #660066;">location</span>.<span style="color: #660066;">protocol</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'https://ssl'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'http://www'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'.google-analytics.com/ga.js'</span><span style="color: #339933;">;</span>
   <span style="color: #003366; font-weight: bold;">var</span> s <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'script'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> s.<span style="color: #660066;">parentNode</span>.<span style="color: #660066;">insertBefore</span><span style="color: #009900;">&#40;</span>ga<span style="color: #339933;">,</span> s<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Save and replace the file in the server. That&#8217;s it.</p>
<h2>Adding the Analytics Site Speed tracking feature using Plugins</h2>
<p>If you are using a plugin to add your Google Analytics code, most of them (as of this post) are not updated to include this new feature yet. You can either wait out for the developer to add the feature or disable the plugin and add the code manually. </p>
<p>To add the code manually, you just have to go to Appearance -> Editor and load the <code>header.php</code> file. Add the Google Analytics code (with the site speed tracking feature) just before the <code>&lt;/head&gt;</code> tag.</p>
<h2>Viewing Your Site Speed Analytic</h2>
<p>The site speed tracking feature is disabled by default. Once you have added the code, it will take several hours to show up on your Google Analytics page. Go to <em>My Site -> Reports -> Content</em>. You should see a new entry &#8220;Site Speed&#8221; under the Content section.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/05/ga-site-speed-tracking.jpg" alt="ga-site-speed-tracking" title="ga-site-speed-tracking" width="235" height="303" class="aligncenter size-full wp-image-33164" /></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" 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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" 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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14&amp;title=How+to+Add+Google+Analytics%26%238217%3Bs+Site+Speed+Tracking+Feature+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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14">How to Add Google Analytics&#8217;s Site Speed Tracking Feature 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-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14/feed</wfw:commentRss>
		<slash:comments>2</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>After the Deadline Spell Checks Your Content in WordPress</title>
		<link>http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11</link>
		<comments>http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11#comments</comments>
		<pubDate>Thu, 11 Nov 2010 22:00:24 +0000</pubDate>
		<dc:creator>Damien Oh</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[grammar]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[proofread]]></category>
		<category><![CDATA[spell check]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=23658</guid>
		<description><![CDATA[No one is perfect. Even the best writer can make typographical errors, not to mention the average bloggers like you and me. There are times when we typed too fast and mixed up the &#8220;a&#8221; and the &#8220;e&#8221; and also times when we get confused over the &#8220;is&#8221; and the &#8220;was&#8220;. For those who are [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" 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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" 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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11&amp;title=After+the+Deadline+Spell+Checks+Your+Content+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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11">After the Deadline Spell Checks Your Content 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 class="alignleft size-full wp-image-24297" title="atd-main" src="http://imagecdn.maketecheasier.com/2010/11/atd-main.jpg" alt="atd-main" width="200" height="180" />No one is perfect. Even the best writer can make typographical errors, not to mention the average bloggers like you and me. There are times when we typed too fast and mixed up the &#8220;<em>a</em>&#8221; and the &#8220;<em>e</em>&#8221; and also times when we get confused over the &#8220;<em>is</em>&#8221; and the &#8220;<em>was</em>&#8220;.</p>
<p>For those who are using WordPress, <a href="http://www.afterthedeadline.com/" target="_blank">After the Deadline</a> is a great spell checker plugin that checks your content for spelling and grammar mistakes. It is easy to use, and comes at no charge.<br />
<span id="more-23658"></span><br />
After the Deadline does not load the whole dictionary to your server. Instead, it sends your content back to their server, validate it and send it back to your server. Everything is done in AJAX, so you won&#8217;t notice the differences.</p>
<p>Once you have installed and activated the plugin, you will see a new &#8220;ABC&#8221; button at your post editor toolbar.</p>
<p><img class="aligncenter size-full wp-image-24292" title="atd-toolbar-button" src="http://imagecdn.maketecheasier.com/2010/11/atd-toolbar-button.png" alt="atd-toolbar-button" width="542" height="111" /></p>
<p>At any point of time, you can click on the button to get it to check your content for any spelling/grammar errors. Any spelling mistake will be underlined in red while a grammar mistake will be marked with green.</p>
<p><img class="aligncenter size-full wp-image-24301" title="atd-error-underline" src="http://imagecdn.maketecheasier.com/2010/11/atd-error-underline.png" alt="atd-error-underline" width="298" height="140" /></p>
<p>To correct the mistake, you just have to click on the word/phrase and a pop-up will appear, showing a list of word suggestion. You can then select from the correct entry or just select &#8220;Ignore Suggestion&#8221; to ignore it. For word like &#8220;MakeTechEasier&#8221; that is not in the dictionary, you can select &#8220;Ignore Always&#8221; to add it to the library so that it won&#8217;t bother you for the same word the next time.</p>
<p><img class="aligncenter size-full wp-image-24291" title="atd-spell-correction" src="http://imagecdn.maketecheasier.com/2010/11/atd-spell-correction.png" alt="atd-spell-correction" width="448" height="203" /></p>
<h3>Settings</h3>
<p>Unlike other plugins that come with a dedicated Settings page, there is no Settings page for After the Deadline plugin. Instead, you will have to go to your profile settings to configure the proofread option.</p>
<p>Options you can configure include whether to automatically proofread content when a post/page is first published or when a post/page is updated. You can also get it to proofread various grammar and style rules such as technical jargon, or redundant phrases.</p>
<p><img class="aligncenter size-full wp-image-24293" title="atd-configure-options" src="http://imagecdn.maketecheasier.com/2010/11/atd-configure-options.png" alt="atd-configure-options" width="586" height="588" /></p>
<h3>Support for various platforms</h3>
<p>While this article is about the WordPress plugin, After the Deadline also comes in various forms, including a bookmarklet, Google Chrome addon, Firefox extension, Intense Debate comment system, bbPress plugin and even the popular Open Office extension. The bottom line is, as long as you have a text field to type on, you will have a mean to spell-check.</p>
<h3>Trying it out before installing</h3>
<p>If you are not sure if this is useful to you, you can always head over to the After the Deadline website and try out the <a href="http://www.polishmywriting.com/" target="_blank">demo</a>. You just have to type in the text field and click &#8220;Check Writing&#8221; when you are done. This will give you a good feel of how it works and you can then decide if you want to install the plugin/extension.</p>
<p>Overall, After the Deadline is a useful plugin that works well and doesn&#8217;t take up much resources. If you have not installed it, grab it now.</p>
<p><a href="http://www.afterthedeadline.com/" target="_blank">After the Deadline</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" 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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" 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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11&amp;title=After+the+Deadline+Spell+Checks+Your+Content+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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11">After the Deadline Spell Checks Your Content 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/after-the-deadline-spell-checks-your-content-in-wordpress/2010/11/11/feed</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>

