<?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 Themes Tips and Tricks &#187; SEO</title>
	<atom:link href="http://wpthemetips.com/tags/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpthemetips.com</link>
	<description>Helping you customize your WordPress based website !</description>
	<lastBuildDate>Thu, 05 Nov 2009 00:48:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>why my archive pages do not show the full content?</title>
		<link>http://wpthemetips.com/why-my-archive-pages-do-not-show-the-full-content/</link>
		<comments>http://wpthemetips.com/why-my-archive-pages-do-not-show-the-full-content/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 16:09:12 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[archive.php]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[optional excerpt]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[the_content]]></category>
		<category><![CDATA[the_excerpt]]></category>

		<guid isPermaLink="false">http://wpthemetips.com/why-my-archive-pages-do-not-show-the-full-content/</guid>
		<description><![CDATA[This is one of the frequently asked questions in our support forums. I will try to answer this question here so it can benefit everyone.
This question is also worded like the following questions.

Tag and Category Views Don&#8217;t Show Images
Images and archives
How do I expand each individual post for the archive

So, what exactly is the problem?
Archive [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the frequently asked questions in our <a href="/forums/" title="WordPress Theme Tips / Support">support forums</a>. I will try to answer this question here so it can benefit everyone.</p>
<p>This question is also worded like the following questions.</p>
<ol>
<li><a href="http://wpthemetips.com/forums/comments.php?DiscussionID=936" title="Tag and Category Views Don't Show Images">Tag and Category Views Don&#8217;t Show Images</a></li>
<li><a href="http://wpthemetips.com/forums/comments.php?DiscussionID=878" title="Images and archives">Images and archives</a></li>
<li><a href="http://wpthemetips.com/forums/comments.php?DiscussionID=728" title="How do I expand each individual post for the archive">How do I expand each individual post for the archive</a></li>
</ol>
<p><strong>So, what exactly is the problem?</strong></p>
<p>Archive pages like the category view, or monthly view, or a tag view, do not show the full post&#8217;s content.<br />
<span id="more-53"></span><br />
<strong>Why it does not ?</strong></p>
<p>Because most of the themes are designed to only show the excerpt of the post, when people are viewing an archive page.</p>
<p><strong>What is the advantage of it?</strong></p>
<p>1. The search engines [like Google or Yahoo], will not list your archive page as the result of a search. You do not want your site visitors to land on an archive page, instead you want them to land on a single post.<br />
2. Most of the time your site&#8217;s visitor, is trying to locate one of your interesting posts that they know it exists on your site. Your archive pages should help them get to it faster.</p>
<p><strong>I do not care about the advantages mentioned above. How do I show the complete post on the archive pages as well?</strong></p>
<p>1. Open up the archive.php and look for<br />
<code><br />
the_excerpt();<br />
</code><br />
in it and replace it with<br />
<code><br />
the_content('Continue Reading');<br />
</code></p>
<p>2. Repeat step 1, for search.php, date.php, category.php [These files may not exist in your theme and if it does not exist, ignore this step]</p>
<p><strong>No..No&#8230;I see the advantages, but I do not want the excerpts to be automatically created.</strong><br />
Well&#8230;when you write a new post, there is an option at the bottom that says &#8220;Optional Excerpt&#8221;.<br />
You can paste your own excerpts of the post, into this box, so that they get displayed on the archive pages.<br />
Remember you can also put html content into this box.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemetips.com/why-my-archive-pages-do-not-show-the-full-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to properly hide the title of your blog?</title>
		<link>http://wpthemetips.com/how-to-properly-hide-the-title-of-your-blog/</link>
		<comments>http://wpthemetips.com/how-to-properly-hide-the-title-of-your-blog/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 17:10:10 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[feed:]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[hide title]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://wpthemetips.com/how-to-properly-hide-the-title-of-your-blog/</guid>
		<description><![CDATA[This is one of the most common customizations that people want to do in their wordpress blog.
They want to hide their site&#8217;s title from displaying at their header. It is most probably because their header image already has it as part of the image itself.
Lets take a look at the most common approaches people take, [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the most common customizations that people want to do in their wordpress blog.</p>
<p>They want to hide their site&#8217;s title from displaying at their header. It is most probably because their header image already has it as part of the image itself.</p>
<p>Lets take a look at the most common approaches people take, for doing this.</p>
<h2>Approach (1) : Delete the blog&#8217;s Title through Options Page</h2>
<p>People go ahead and login to their wordpress, click on the Options and they look at the text box with the label &#8220;Weblog Title&#8221;. They just clear the text in that box and click on &#8220;Update Options&#8221;.<br />
Start from<br />
<a href='/wp-content/uploads/2008/02/optionspage1.jpg' title='optionspage1.jpg' target='_blank'><img src='/wp-content/uploads/2008/02/optionspage1.thumbnail.jpg' alt='optionspage1.jpg' /><br/>Click to Zoom!</a><br />
and make it look like<br />
<a href='/wp-content/uploads/2008/02/optionspage2.jpg' title='optionspage2.jpg' target='_blank'><img src='/wp-content/uploads/2008/02/optionspage2.thumbnail.jpg' alt='optionspage2.jpg' /><br/>Click to Zoom!</a></p>
<p>Wow ! That seems to work., isn&#8217;t it ?</p>
<p>Wait a minute, lets take a closer look !<br />
As a result of your change, the following undesirable effects were created.<br />
<span id="more-39"></span><br />
<strong>Issue #1 : Search Engines do not see the site&#8217;s title</strong></p>
<p>You only intended your site&#8217;s title to hide from your vistor&#8217;s eyes, but now even search engine&#8217;s can not see your site&#8217;s title.<br />
A site&#8217;s title enclosed in &lt;h1&gt; and &lt;/h1&gt; tags, is one of the main things, search engines look at when they crawl around your site.<br />
If the search engines do not know your site&#8217;s title, how will they display your site as part of any search results.?</p>
<p><strong>Issue #2 : Site Title does not appear in the browser&#8217;s top bar</strong></p>
<p><img src='/wp-content/uploads/2008/02/no-title-in-the-browser.jpg' alt='no-title-in-the-browser.jpg' class="centered" /><br />
If the user has opened many browser windows or browser tabs, he/she may not be able to find the window/tab that your website is on.</p>
<p><strong>Issue #3 : Site&#8217;s Feeds do not display a title, either</strong></p>
<p>If the user subscribes to your RSS Feeds, they also do not display your site&#8217;s title.<br />
<img src='/wp-content/uploads/2008/02/no-title-for-feeds.jpg' alt='no-title-for-feeds.jpg' class="centered" /><br />
Some feed reader softwares also reject feeds that do not have a title.</p>
<p>Oh my God! This approach has some serious issues, isn&#8217;t it ?</p>
<h2>Approach (2) : Delete the line from header.php</h2>
<p>Somewhat knowledgeable users open up the header.php in the theme directory. They know what is the line that causes the title to display in the header.<br />
They just look for</p>
<p><code>&lt;h1&gt;&lt;a href=&quot;&lt;?php bloginfo('siteurl');?&gt;/&quot; title=&quot;&lt;?php bloginfo('name');?&gt;&quot;&gt;&lt;?php bloginfo('name');?&gt;&lt;/a&gt;&lt;/h1&gt;</code></p>
<p>and delete the whole line or make it </p>
<p><code>&lt;h1&gt;&lt;/h1&gt;</code></p>
<p>Yes. Now the site&#8217;s title do not appear in their header and they are happy !</p>
<p>Wait, They will still have the Issue #1 as we discussed for Approach #1.</p>
<h2>Approach (3) : Hiding it through CSS Style definition</h2>
<p>If we really think about the problem at hand, it is very simple. We want to hide the site&#8217;s title from the header of the site, as we already have the site&#8217;s title as part of the header image.<br />
We only have to hide it from people browsing the site in the browser, and not from the search engines or feed readers.<br />
Lets take a look at the CSS based solution for this.</p>
<p>Add</p>
<p><code>#header h1 { display:none }</code></p>
<p>at the end of style.css and save it.</p>
<p>Now let&#8217;s refresh the site and see if the title is hidden. It is still showing up? You have to clear your browser&#8217;s cache and refresh the page again.</p>
<p>Ok&#8230;Now it seems to work !</p>
<p>Is there any of the Issues 1, 2 and 3 as we discussed earlier ? </p>
<p>Nope !</p>
<p>Well, may be this is the proper way to hide the site&#8217;s title from the header ?</p>
<p>I believe so !</p>
<p><strong>Disclaimer :</strong></p>
<p>This would work in most of the wordpress themes [at least <a href="http://sadish.net/wordpress-themes/" title="Sadish's Themes" target="_blank">the ones that I created</a>]. If it does not work in one of my themes, please go to <a href="http://wpthemetips.com/forums/" title="WordPress Theme Support by Sadish" target="_blank">Support Forums for my themes</a> and if it is someone else&#8217;s theme, please contact the author of that theme.<br />
Commenting on this post for help with your site, is <strong>not recommended</strong>.</p>
<p>Thanks.<br />
[Reposted from one of my other sites]</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemetips.com/how-to-properly-hide-the-title-of-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
