<?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>Juipo Web Design &#187; title tag</title>
	<atom:link href="http://juipo.com/tag/title-tag/feed/" rel="self" type="application/rss+xml" />
	<link>http://juipo.com</link>
	<description>Website Design, Development, Premium and Free Website Templates, Elgg PHP HTML CSS Tips and Tricks.</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:18:45 +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>SEO Friendly Page Titles for Pligg</title>
		<link>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/</link>
		<comments>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 00:12:02 +0000</pubDate>
		<dc:creator>juipodev</dc:creator>
				<category><![CDATA[Pligg Hacks]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo friendly title]]></category>
		<category><![CDATA[title tag]]></category>

		<guid isPermaLink="false">http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/</guid>
		<description><![CDATA[You must have noticed on your default Pligg installation whatever page you open, the title tags stay the same "Pligg Beta 9 " (or the name of your site when you change it). This is not very Search Engine Friendly because the "page title tag element is still one of the most important factors for ranking highly in the search engines" so having the same title tag on every page would do you no good. Here is a really simple hack that will fix your Title tags on your Pligg Site.]]></description>
			<content:encoded><![CDATA[<p><strong>Create SEO Friendly Titles on your Pligg pages</strong></p>
<p>You must have noticed on your default Pligg installation whatever page you open, the title tags stay the same &#8220;Pligg Beta 9 &#8221; (or the name of your site when you change it). This is not very Search Engine Friendly because the &#8220;<a href="http://seojr.com/meta-tags-building-and-optimizing-a-search-engine-friendly-pages-part-1/" target="_blank">page title tag element</a> is still one of the most important factors for ranking highly in the search engines&#8221; so having the same title tag on every page would do you no good.</p>
<p>So here is a really simple hack that anyone can do and I have been using on all my Pligg sites and in <a href="http://juipo.com/category/free-tamplates/free-pligg-tamplates/">free pligg templates</a> offered here. This little hack will display Story titles on story pages, category names as titles on category pages and for all other pages whatever you name them in your Admin Panel (under Â» Admin Â» Modify Language) in  PLIGG_Visual names. It will also reverse page titles putting your site name AFTER the page name which is also better for Search Engines. Here are some examples of this below.</p>
<p><strong>Original Pligg Story Title</strong><br />
BuzzSEOjr.com | Most Important SEO Tips</p>
<p><strong>SEO Friendly Pligg Story Title</strong><br />
Most Important SEO Tips | BuzzSEOjr.com</p>
<p>Now your most important keywords are at the front of the page title. Very SEARCH ENGINE FRIENDLY title don&#8217;t you think?</p>
<p>Here&#8217;s how to do it:</p>
<p>First open <strong>templates/templateName/</strong><strong>pligg.tpl</strong> and <strong>FIND</strong></p>
<p><code>&lt;title&gt;{if isset($pretitle)}{$pretitle}{/if}{#PLIGG_Visual_Name#}{if isset($posttitle)}{$posttitle}{/if}&lt;/title&gt;</code></p>
<p><strong>REPLACE WITH</strong></p>
<p><code>{if $pagename eq "story" || $pagename eq "topusers" || $pagename eq "cloud" || $pagename eq "upcoming" || $pagename eq "live" || $pagename eq "submit"}<br />
&lt;title&gt;{$posttitle|substr:3} | {#PLIGG_Visual_Name#}&lt;/title&gt;<br />
{elseif $pagename eq "search"}<br />
&lt;title&gt;{$posttitle|substr:3} search results | {#PLIGG_Visual_Name#}&lt;/title&gt;<br />
{else}<br />
&lt;title&gt;{#PLIGG_Visual_Name#} | {$pretitle|substr:22} {$posttitle|substr:3 }&lt;/title&gt;<br />
{/if}</code></p>
<p>That will take care of your main title tags. Now this Hack should take care of your h2 header tag on search page and it is optional.</p>
<p>Open <strong>templates/templateName/search_centre.tpl</strong> and <strong>FIND</strong></p>
<p><code>{if isset($templatelite.get.search)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.search|sanitize:2|stripslashes}&lt;/h2&gt;<br />
{/if}<br />
{if isset($templatelite.get.q)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.q|sanitize:2|stripslashes}&lt;/h2&gt;<br />
{/if}</code></p>
<p><strong>REPLACE WITH</strong></p>
<p><code>{if isset($templatelite.get.search)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.search|sanitize:2|stripslashes} search results&lt;/h2&gt;<br />
{/if}<br />
{if isset($templatelite.get.q)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.q|sanitize:2|stripslashes} Search Results&lt;/h2&gt;<br />
{/if}</code></p>
<p>There is one more thing to do, go to your Admin Panel / Modify Language and filter for &#8220;Search results for&#8221;, remove both pieces of text by editing and deleting the text then clicking save leaving blank text fields.</p>
<p>Thats it, you&#8217;re done. You just created SEO Optimized Page Titles on your Pligg site.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

