<?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>WordPress Magazine &#187; Tips</title>
	<atom:link href="http://wp-magz.com/wordpress/tips/feed" rel="self" type="application/rss+xml" />
	<link>http://wp-magz.com</link>
	<description>Just another WordPress Magazine, all about free wordpress themes, plugins, hack, tips, SEO</description>
	<lastBuildDate>Tue, 06 Jul 2010 17:56:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress SEO Tips : Remove unnecessary links</title>
		<link>http://wp-magz.com/tips/wordpress-seo-tips-remove-unnecessary-links.html</link>
		<comments>http://wp-magz.com/tips/wordpress-seo-tips-remove-unnecessary-links.html#comments</comments>
		<pubDate>Mon, 10 Nov 2008 17:26:01 +0000</pubDate>
		<dc:creator>wp-magz</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://wp-magz.com/?p=62</guid>
		<description><![CDATA[If you have a more tag and a comments link on every post, and of course a post title, you have three different links pointing to the same page. This can affect your rankings negatively (again, because Google may think these links point to different pages).
To remove the “#more” text from your ‘Read More’ link, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a more tag and a comments link on every post, and of course a post title, you have three different links pointing to the same page. This can affect your rankings negatively (again, because Google may think these links point to different pages).</p>
<p>To remove the “#more” text from your ‘Read More’ link, replace the following line in your wp-includes/post-template.php</p>
<ol class="code">
<li><code>$output .= ' &lt;a href="'. get_permalink()</code></li>
<li><code>. "#more-$id\"&gt;$more_link_text&lt;/a&gt;";</code></li>
</ol>
<p>with</p>
<ol class="code">
<li><code>$output .= ' &lt;a href="'. get_permalink()</code></li>
<li><code>."\"&gt;$more_link_text&lt;/a&gt;";</code></li>
</ol>
<h3>Related Wordpress Magazines</h3>
<ul class="related_post">
<li><a href="http://wp-magz.com/seo/wordpress-seo-guide-for-beginner.html" title="Wordpress SEO Guide for Beginner">Wordpress SEO Guide for Beginner</a></li>
<li><a href="http://wp-magz.com/tips/tips-5-langkah-proteksi-wordpress-anda.html" title="Tips 5 Langkah Proteksi Wordpress Anda">Tips 5 Langkah Proteksi Wordpress Anda</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wp-magz.com/tips/wordpress-seo-tips-remove-unnecessary-links.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tips 5 Langkah Proteksi Wordpress Anda</title>
		<link>http://wp-magz.com/tips/tips-5-langkah-proteksi-wordpress-anda.html</link>
		<comments>http://wp-magz.com/tips/tips-5-langkah-proteksi-wordpress-anda.html#comments</comments>
		<pubDate>Fri, 12 Sep 2008 15:07:42 +0000</pubDate>
		<dc:creator>wp-magz</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress Secure]]></category>
		<category><![CDATA[Wordpress security]]></category>

		<guid isPermaLink="false">http://wp-magz.com/?p=57</guid>
		<description><![CDATA[1. Create .htaccess
Contoh dibawah jika anda menggunakan permalink yang sudah di modif
&#60;IfModule mod_rewrite.c&#62;
RewriteEngine On
php_flag register_globals off
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&#60;/IfModule&#62;
&#60;Files wp-config.php&#62;
Order Deny,Allow
Deny from All
&#60;/Files&#62;
2. Create Robots.txt
User-agent: *
Allow: /
Disallow: /wp-admin/
Disallow: /wp-includes/
Disallow: /wp-content/
3. Create file index.html
Create file  index.html kosong di plugin folder wp-content/plugins/index.html
4. Hapus Meta Name Generator WordPress
5. Secara berkala update wordpress dan [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. Create .htaccess</strong></p>
<p>Contoh dibawah jika anda menggunakan permalink yang sudah di modif</p>
<p>&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
php_flag register_globals off<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;</p>
<p>&lt;Files wp-config.php&gt;<br />
Order Deny,Allow<br />
Deny from All<br />
&lt;/Files&gt;</p>
<p><strong>2. Create Robots.txt</strong></p>
<p>User-agent: *<br />
Allow: /<br />
Disallow: /wp-admin/<br />
Disallow: /wp-includes/<br />
Disallow: /wp-content/</p>
<p><strong>3. Create file index.html</strong></p>
<p>Create file  index.html kosong di plugin folder wp-content/plugins/index.html<span id="more-57"></span></p>
<p>4. <a title="Hapus Meta Name Generator Wordpress" href="http://wp-magz.com/tips/hapus-meta-name-generator-wordpress.html" target="_self">Hapus Meta Name Generator WordPress</a></p>
<p>5. Secara berkala update wordpress dan plugin yang anda gunakan<br />
<h3>Related Wordpress Magazines</h3>
<ul class="related_post">
<li><a href="http://wp-magz.com/tips/wordpress-seo-tips-remove-unnecessary-links.html" title="WordPress SEO Tips : Remove unnecessary links">WordPress SEO Tips : Remove unnecessary links</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wp-magz.com/tips/tips-5-langkah-proteksi-wordpress-anda.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hapus Meta Name Generator WordPress</title>
		<link>http://wp-magz.com/tips/hapus-meta-name-generator-wordpress.html</link>
		<comments>http://wp-magz.com/tips/hapus-meta-name-generator-wordpress.html#comments</comments>
		<pubDate>Wed, 27 Aug 2008 12:55:51 +0000</pubDate>
		<dc:creator>wp-magz</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://wp-magz.com/?p=35</guid>
		<description><![CDATA[Secara default wordpress menambah automatis meta generator dengan content biasanya diisi dengan string versi wordpress yang digunakan

&#60;meta name="generator" content="WordPress 2.5.1" /&#62;

Untuk menghapusnya, silahkan edit file functions.php theme anda yang berada di wp-content/theme/theme-aktif, dan tambah dengan baris berikut

remove_action('wp_head', 'wp_generator');

Random Wordpress Magazines

Imprezz – Free WordPress Theme
WordPress LiveWire Themes
Wordpress Update Services
Auto Social Poster Pro 3.9 for Wordpress
Tips 5 [...]]]></description>
			<content:encoded><![CDATA[<p>Secara default wordpress menambah automatis meta generator dengan content biasanya diisi dengan string versi wordpress yang digunakan</p>
<blockquote>
<pre class="prettyprint"><span class="tag">&lt;meta </span><span class="atn">name</span><span class="tag">=</span><span class="atv">"generator"</span><span class="tag"> </span><span class="atn">content</span><span class="tag">=</span><span class="atv">"WordPress 2.5.1"</span><span class="tag"> </span><span class="atn">/</span><span class="tag">&gt;</span></pre>
</blockquote>
<p>Untuk menghapusnya, silahkan edit file functions.php theme anda yang berada di wp-content/theme/theme-aktif, dan tambah dengan baris berikut</p>
<blockquote>
<pre class="prettyprint"><span class="pln">remove_action</span><span class="pun">(</span><span class="str">'wp_head'</span><span class="pun">,</span><span class="pln"> </span><span class="str">'wp_generator'</span><span class="pun">);</span></pre>
</blockquote>
<h3>Random Wordpress Magazines</h3>
<ul class="related_post">
<li><a href="http://wp-magz.com/themes/wordpress-premium-theme-woo-object.html" title="Wordpress Premium Theme &#8211; Woo Object">Wordpress Premium Theme &#8211; Woo Object</a></li>
<li><a href="http://wp-magz.com/themes/elegantthemes-themes/myapp-june-2010-elegantthemes-theme.html" title="MyApp &#8211; June 2010 ElegantThemes Theme">MyApp &#8211; June 2010 ElegantThemes Theme</a></li>
<li><a href="http://wp-magz.com/themes/imprezz-%e2%80%93-free-wordpress-theme.html" title="Imprezz – Free WordPress Theme">Imprezz – Free WordPress Theme</a></li>
<li><a href="http://wp-magz.com/themes/glow-elegantthemes-premium-wordpress-theme.html" title="Glow &#8211; ElegantThemes Premium WordPress Theme">Glow &#8211; ElegantThemes Premium WordPress Theme</a></li>
<li><a href="http://wp-magz.com/themes/langit-professional-and-classy-wordpress-theme.html" title="Langit: Professional and classy wordpress theme">Langit: Professional and classy wordpress theme</a></li>
<li><a href="http://wp-magz.com/themes/classipress-wordpress-theme.html" title="ClassiPress Wordpress Theme">ClassiPress Wordpress Theme</a></li>
<li><a href="http://wp-magz.com/uncategorized/wordpress-indonesia.html" title="WordPress Indonesia">WordPress Indonesia</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wp-magz.com/tips/hapus-meta-name-generator-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
