<?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/tag/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>
	</channel>
</rss>
