<?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>Techie Corner &#187; Wordpress</title>
	<atom:link href="http://www.techiecorner.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techiecorner.com</link>
	<description>The place for computer tips and tricks! microsoft windows, open source, database, programming, freeware and etc</description>
	<lastBuildDate>Wed, 08 Sep 2010 01:39:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to remove #more tag in WordPress</title>
		<link>http://www.techiecorner.com/1131/how-to-remove-more-tag-in-wordpress/</link>
		<comments>http://www.techiecorner.com/1131/how-to-remove-more-tag-in-wordpress/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 14:21:51 +0000</pubDate>
		<dc:creator>chua</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[remove #more jump]]></category>
		<category><![CDATA[remove more jump wordpress]]></category>
		<category><![CDATA[wordpress disable more]]></category>
		<category><![CDATA[wordpress remove #more]]></category>
		<category><![CDATA[wordpress remove #more jump]]></category>
		<category><![CDATA[wordpress remove more anchor]]></category>

		<guid isPermaLink="false">http://www.techiecorner.com/?p=1131</guid>
		<description><![CDATA[By default WordPress post listing will embed with #more tag. If you do not like the #more tag like me, you can remove the #more tag using wordpress filter. In case you do not know what is #more tag, here&#8217;s the explanation. Whenever user click on the &#8220;read more&#8221; link at the post listing, it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.techiecorner.com/wp-content/uploads/2010/02/wordpress.jpg" alt="" title="wordpress" width="130" height="130" class="alignnone size-full wp-image-1281" align="left" hspace="5" />By default WordPress post listing will embed with #more tag. If you do not like the #more tag like me, you can remove the #more tag using wordpress filter. In case you do not know what is #more tag, here&#8217;s the explanation. Whenever user click on the &#8220;read more&#8221; link at the post listing, it will redirect user to the single post page and auto focus on the anchor tag. I dun find this very useful but caused of confusion to my readers. </p>
<h3>To remove the #more in WordPress listing, follow the steps below:-</h3>
<p><span id="more-1131"></span></p>
<ul>
<li>Login to your wordpress</li>
<li>Go to Appearance -> Editor</li>
<li>Click on functions.php at the right sidebar</li>
<li>Copy and paste the code below, and click &#8220;Update File&#8221;
<pre>
function remove_more_jump_link($link) {
	$offset = strpos($link, '#more-');
	if ($offset) {
		$end = strpos($link, '"',$offset);
	}
	if ($end) {
		$link = substr_replace($link, '', $offset, $end-$offset);
	}
	return $link;
}

add_filter('the_content_more_link', 'remove_more_jump_link');
</pre>
</li>
<li>Now the #more jump at the post listing should have removed</li>
</ul>
<p><small>Credit: <a rel="nofollow" target="_blank" href="http://codex.wordpress.org/Customizing_the_Read_More">Codex</a></small></p>
<!-- link start -->
						<script type="text/javascript"><!--
						google_ad_client = "pub-9874157950618711";
						/* Tech HLink After Post */
						google_ad_slot = "4582592668";
						google_ad_width = 468;
						google_ad_height = 15;
						//-->
						</script>
						<script type="text/javascript"
						src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
						</script>
						<!-- link end -->]]></content:encoded>
			<wfw:commentRss>http://www.techiecorner.com/1131/how-to-remove-more-tag-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress: How to remove meta generator tag?</title>
		<link>http://www.techiecorner.com/502/wordpress-how-to-remove-meta-generator-tag/</link>
		<comments>http://www.techiecorner.com/502/wordpress-how-to-remove-meta-generator-tag/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 08:05:01 +0000</pubDate>
		<dc:creator>chua</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[meta generator]]></category>
		<category><![CDATA[meta tag]]></category>
		<category><![CDATA[wordpress meta generator]]></category>

		<guid isPermaLink="false">http://www.techiecorner.com/?p=502</guid>
		<description><![CDATA[WordPress show ver no. in meta generator tag by default. You may remove the meta generator tag for security reason. It&#8217;s easy to remove meta generator tag in wordpress, just add a line to a line. To remove meta generator tag in wordpress, follow the steps below:- Login into your wordpress admin panel as administrator [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress show ver no. in meta generator tag by default. You may remove the meta generator tag for security reason. It&#8217;s easy to remove meta generator tag in wordpress, just add a line to a line.</p>
<p>To remove meta generator tag in wordpress, follow the steps below:-<br />
<span id="more-502"></span></p>
<ul>
<li>Login into your wordpress admin panel as administrator privilege</li>
<li>Go to Appearance -> Editor and click on the file functions.php</li>
<li>Go to the bottom of the page and add this line before the line with ?&gt; and click Update
<pre>remove_action('wp_head', 'wp_generator');</pre>
</li>
<li>if you do not have functions.php file, you may create one with the content below and upload to your theme folder:-
<pre>&lt;?php remove_action('wp_head', 'wp_generator'); ?&gt;</pre>
</li>
<li>Done, you have just removed meta generator tag in wordpress</li>
<li>Now clear your wordpress cache (if you have any) else you can visit your front page to verify the existence of meta generator tag </li>
</ul>
<!-- link start -->
						<script type="text/javascript"><!--
						google_ad_client = "pub-9874157950618711";
						/* Tech HLink After Post */
						google_ad_slot = "4582592668";
						google_ad_width = 468;
						google_ad_height = 15;
						//-->
						</script>
						<script type="text/javascript"
						src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
						</script>
						<!-- link end -->]]></content:encoded>
			<wfw:commentRss>http://www.techiecorner.com/502/wordpress-how-to-remove-meta-generator-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress WP-Cache with GZip Compression enable</title>
		<link>http://www.techiecorner.com/25/wordpress-wp-cache-with-gzip-compression-enable/</link>
		<comments>http://www.techiecorner.com/25/wordpress-wp-cache-with-gzip-compression-enable/#comments</comments>
		<pubDate>Mon, 11 Sep 2006 15:22:09 +0000</pubDate>
		<dc:creator>chua</dc:creator>
				<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp cache]]></category>
		<category><![CDATA[wp cache hack]]></category>

		<guid isPermaLink="false">http://www.techiecorner.com/25/wordpress-wp-cache-with-gzip-compression-enable/</guid>
		<description><![CDATA[What is WP-Cache? WP-Cache is an extremely efficient WordPress page caching system to make your site much faster and responsive. It works by caching Worpress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and then building the page [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/98/249378365_eeb03c3597_m.jpg" alt="wordpress, wordpress plugin, wordpress blog system" align="left" hspace="5" /><strong>What is WP-Cache?</strong><br />
WP-Cache is an extremely efficient WordPress page caching system to make your site much faster and responsive. It works by caching Worpress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and then building the page from the database. WP-Cache allows to serve hundred of times more pages per second, and to reduce the response time from several tenths of seconds to less than a millisecond. (From: <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache homepage</a>)</p>
<p><strong>How to have WP-Cache with Gzip compression enable?</strong><br />
The default WP-Cache plugin do not support gzip compression. If you would like to turn on WP-Cache with gzip compression you need to do some hacking. Here are the steps:-<br />
<span id="more-25"></span></p>
<p><strong>1st:</strong><br />
<a href="http://mnm.uib.es/gallir/wp-cache-2/">Download the latest version of WP-Cache</a></p>
<p><strong>2nd:</strong><br />
Turn off gzip in the Options.</p>
<p><strong>3rd:</strong><br />
Edit: wp-cache-phase1.php<br />
Add this line:<br />
if ( extension_loaded(’zlib’) ) ob_start(’ob_gzhandler’);</p>
<p>Before this:<br />
foreach ($meta->headers as $header) {<br />
header($header);</p>
<p><strong>4th:</strong><br />
Edit: /wp-content/advanced-cache.php</p>
<p>Add:<br />
if ( extension_loaded(’zlib’) ) ob_start(’ob_gzhandler’);</p>
<p>Before this:<br />
foreach ($meta->headers as $header) {</p>
<p>That&#8217;s it! and now your site should be fast enough!</p>
<p>Credit: <a href="http://chrisstormer.com/2006/07/08/bad-behavior-wp-cache-gzip-solution/">Chris Stormer</a> </p>
<p class="simpletags">Technorati Tags: <a href="http://technorati.com/tag/wordpress" rel="tag">wordpress</a>, <a href="http://technorati.com/tag/wordpress+hack" rel="tag"> wordpress hack</a>, <a href="http://technorati.com/tag/wordpress+plugin" rel="tag"> wordpress plugin</a>, <a href="http://technorati.com/tag/wp+cache" rel="tag"> wp cache</a>, <a href="http://technorati.com/tag/wp+cache+hack" rel="tag"> wp cache hack</a>, <a href="http://technorati.com/tag/web" rel="tag"> web</a>, <a href="http://technorati.com/tag/software" rel="tag"> software</a>, <a href="http://technorati.com/tag/web+application" rel="tag"> web application</a>, <a href="http://technorati.com/tag/blogging+tools" rel="tag"> blogging tools</a>, <a href="http://technorati.com/tag/blogging" rel="tag"> blogging</a></p>
<!-- link start -->
						<script type="text/javascript"><!--
						google_ad_client = "pub-9874157950618711";
						/* Tech HLink After Post */
						google_ad_slot = "4582592668";
						google_ad_width = 468;
						google_ad_height = 15;
						//-->
						</script>
						<script type="text/javascript"
						src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
						</script>
						<!-- link end -->]]></content:encoded>
			<wfw:commentRss>http://www.techiecorner.com/25/wordpress-wp-cache-with-gzip-compression-enable/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (user agent is rejected)
Database Caching 7/27 queries in 0.013 seconds using disk
Object Caching 248/439 objects using disk

Served from: www.techiecorner.com @ 2010-09-11 02:57:22 -->