<?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>TechWhiz &#187; saurabh</title>
	<atom:link href="http://www.techwhiz.in/author/saurabh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techwhiz.in</link>
	<description></description>
	<lastBuildDate>Fri, 03 Jun 2011 05:15:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to remove WordPress generator tag?</title>
		<link>http://www.techwhiz.in/how-to-remove-wordpress-generator-tag/</link>
		<comments>http://www.techwhiz.in/how-to-remove-wordpress-generator-tag/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 05:12:33 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[remove wordpress tag]]></category>
		<category><![CDATA[wordpress generator]]></category>

		<guid isPermaLink="false">http://www.techwhiz.in/how-to-remove-wordpress-generator-tag/</guid>
		<description><![CDATA[WordPress by default displays the version number as meta tag in header of websites powered by it. Here is a simple trick to disable WordPress displaying this meta tag. Log-in to your blog/website’s wordpress admin panel with administrator privileges Go to ‘Appearance—&#62;Editor’ in the left sidebar of the admin panel Open “functions.php” and add the [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress by default displays the version number as meta tag in header of websites powered by it. Here is a simple trick to disable WordPress displaying this meta tag.</p>
<ul>
<li>Log-in to your blog/website’s wordpress admin panel with administrator privileges </li>
<li>Go to ‘Appearance—&gt;Editor’ in the left sidebar of the admin panel      <br /><img style="background-image: none; border-right-width: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="wordpress theme editor" border="0" alt="wordpress theme editor" src="http://www.techwhiz.in/tw_uploads/2011/06/image.png" width="154" height="143" /> </li>
<li>Open “functions.php” and add the following code anywhere in the file and click on ‘Update File’. </li>
</ul>
<blockquote><pre>remove_action('wp_head', 'wp_generator'</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.techwhiz.in/how-to-remove-wordpress-generator-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable excerpt on WordPress Page</title>
		<link>http://www.techwhiz.in/enable-excerpt-on-wordpress-page/</link>
		<comments>http://www.techwhiz.in/enable-excerpt-on-wordpress-page/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 03:07:00 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techwhiz.in/enable-excerpt-on-wordpress-page/</guid>
		<description><![CDATA[You would have noticed in WordPress that while you can enter excerpt for a post, the same can not be done when you create a new page. WordPress in default does not have the excerpt feature on Page. But you can enable this by entering a few lines of code in Theme Functions of your [...]]]></description>
			<content:encoded><![CDATA[<p>You would have noticed in WordPress that while you can enter excerpt for a post, the same can not be done when you create a new page. WordPress in default does not have the excerpt feature on Page. But you can enable this by entering a few lines of code in Theme Functions of your template.</p>
<ul>
<li>Login to WordPress admin </li>
<li>Open ‘functions.php’ in Theme Editor </li>
<li>Enter the following code and update the file </li>
</ul>
<blockquote><p>add_action(&#8216;init&#8217;, &#8216;dc_custom_init&#8217;);</p>
<p>&#160;&#160;&#160; function dc_custom_init() {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; add_post_type_support( &#8216;page&#8217;, &#8216;excerpt&#8217; );       <br />&#160;&#160;&#160; }</p>
<p>&#160;</p>
</blockquote>
<ul>
<li>Now when you create a new page, you can enter excerpt. If you are running WordPress 3.1 , you may not find a textarea to enter excerpt. Read this article to <a title="Enable Excerpt in WordPress 3.1" href="http://www.techwhiz.in/how-to-enable-excerpt-in-wordpress-3-1/">enable excerpt in WordPress 3.1</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.techwhiz.in/enable-excerpt-on-wordpress-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Enable Excerpt in WordPress 3.1</title>
		<link>http://www.techwhiz.in/how-to-enable-excerpt-in-wordpress-3-1/</link>
		<comments>http://www.techwhiz.in/how-to-enable-excerpt-in-wordpress-3-1/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 02:44:42 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techwhiz.in/how-to-enable-excerpt-in-wordpress-3-1/</guid>
		<description><![CDATA[When you finish installation or upgrade of WordPress 3.1, first thing that you will notice is that there is no excerpt field below textarea in post or page. There is no need to panic, creators of WordPress have disabled this option in WordPress 3.1. But you can enable this option in no time. Login into [...]]]></description>
			<content:encoded><![CDATA[<p>When you finish installation or upgrade of WordPress 3.1, first thing that you will notice is that there is no excerpt field below textarea in post or page. There is no need to panic, creators of WordPress have disabled this option in WordPress 3.1. But you can enable this option in no time.</p>
<ol>
<li>Login into administration </li>
<li>Go to posts or pages </li>
<li>Click on any of posts or pages to enter </li>
<li>Go to “Screen Options”      <br /><img style="background-image: none; border-right-width: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="screen-options" border="0" alt="screen-options" src="http://www.techwhiz.in/tw_uploads/2011/04/screen-options.jpg" width="524" height="255" /> </li>
<li>Check all boxes that you want to enable      <br /><img style="background-image: none; border-right-width: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="enable-excerpt" border="0" alt="enable-excerpt" src="http://www.techwhiz.in/tw_uploads/2011/04/enable-excerpt.jpg" width="524" height="255" /> </li>
<li>Close “Screen Options”      </li>
</ol>
<p>Now you when go and add a new post/page, you will find the box to enter excerpt below your main content textarea. If you still do not find a textarea on Page to enter excerpt, <a title="Enable excerpt on WordPress Page" href="http://www.techwhiz.in/enable-excerpt-on-wordpress-page/">read this article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techwhiz.in/how-to-enable-excerpt-in-wordpress-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rename wp-content</title>
		<link>http://www.techwhiz.in/rename-wp-content/</link>
		<comments>http://www.techwhiz.in/rename-wp-content/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 06:04:45 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-content]]></category>

		<guid isPermaLink="false">http://www.techwhiz.in/?p=2008</guid>
		<description><![CDATA[There is a very simple way to rename the default folder &#8220;wp-content&#8221; and hide information from your visitors that your website/blog is powered by WordPress. Some plugins and themes use &#8220;wp-content&#8221; in the code and renaming the &#8220;wp-content&#8221; folder may sometimes render such plugins and themes un-usable. However, you fix the issue by editing the [...]]]></description>
			<content:encoded><![CDATA[<p>There is a very simple way to rename the default folder &#8220;wp-content&#8221; and hide information from your visitors that your website/blog is powered by WordPress.</p>
<p>Some plugins and themes use &#8220;wp-content&#8221; in the code and renaming the &#8220;wp-content&#8221; folder may sometimes render such plugins and themes un-usable. However, you fix the issue by editing the code (WP_CONTENT_DIR or WP_CONTENT_URL).</p>
<ul>
<li>Open wp-config.php file present in the root folder of WordPress installation.</li>
<li>Add the following before this: require_once(ABSPATH . ‘wp-settings.php’)<br />
<blockquote><p>
define(&#8216;WP_CONTENT_FOLDERNAME&#8217;, &#8216;new-content-folder&#8217;);<br />
define(&#8216;WP_CONTENT_DIR&#8217;, ABSPATH . WP_CONTENT_FOLDERNAME );<br />
define(&#8216;WP_CONTENT_URL&#8217;, &#8216;http://your-domain/&#8217;.WP_CONTENT_FOLDERNAME);<br />
define(&#8216;WP_PLUGIN_DIR&#8217;, WP_CONTENT_DIR .&#8217;/plugins&#8217; );<br />
define(&#8216;WP_PLUGIN_URL&#8217;, WP_CONTENT_URL.&#8217;/plugins&#8217;);
</p></blockquote>
</li>
<li>Replace new-content-folder with a new folder name and replace your-domain with your site domain (e.g. www.techwhiz.in)</li>
<li>Rename “wp-content” folder to the new name and you are done!</li>
<ul>
]]></content:encoded>
			<wfw:commentRss>http://www.techwhiz.in/rename-wp-content/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to remove Joomla generator tag?</title>
		<link>http://www.techwhiz.in/how-to-remove-joomla-generator-tag/</link>
		<comments>http://www.techwhiz.in/how-to-remove-joomla-generator-tag/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 05:39:31 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[generator tag]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[remove tag]]></category>

		<guid isPermaLink="false">http://www.techwhiz.in/?p=2006</guid>
		<description><![CDATA[Here is a little tip to remove Joomla Generator tag from the head of your site. Download the following file via FTP and open it in any text editor (/libraries/joomla/document/html/renderer/head.php) find $strHtml .= $tab.&#8217;&#60;meta name=&#8221;generator&#8221; content=&#8221;&#8216;.$document-&#62;getGenerator().&#8217;&#8221; /&#62;&#8217;.$lnEnd; Add two slashes at the beginning of this code //$strHtml .= $tab.&#8217;&#60;meta name=&#8221;generator&#8221; content=&#8221;&#8216;.$document-&#62;getGenerator().&#8217;&#8221; /&#62;&#8217;.$lnEnd; Save the file [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a little tip to remove Joomla Generator tag from the head of your site.</p>
<p>Download the following file via FTP and open it in any text editor (/libraries/joomla/document/html/renderer/head.php)</p>
<p>find</p>
<blockquote><p>$strHtml .= $tab.&#8217;&lt;meta name=&#8221;generator&#8221; content=&#8221;&#8216;.$document-&gt;getGenerator().&#8217;&#8221; /&gt;&#8217;.$lnEnd;</p></blockquote>
<p>Add two slashes at the beginning of this code</p>
<blockquote><p>//$strHtml .= $tab.&#8217;&lt;meta name=&#8221;generator&#8221; content=&#8221;&#8216;.$document-&gt;getGenerator().&#8217;&#8221; /&gt;&#8217;.$lnEnd;</p></blockquote>
<p>Save the file and upload to the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techwhiz.in/how-to-remove-joomla-generator-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

