<?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>EasyLifeguide - Posts about Life, Entertainment, Tips, Step by Step Guide and a lot more! &#187; Wordpress tips</title>
	<atom:link href="http://www.easylifeguide.net/category/wordpress-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.easylifeguide.net</link>
	<description>Qoutes &#124; Guides &#124; Tips &#124; Yuo Tube Downloads</description>
	<lastBuildDate>Fri, 05 Mar 2010 23:07:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress Tips:How To Display Other Blog&#8217;s Feeds to Your WordPress Blog</title>
		<link>http://www.easylifeguide.net/2007/12/03/wordpress-tipshow-to-display-other-blogs-feeds-to-your-wordpress-blog/</link>
		<comments>http://www.easylifeguide.net/2007/12/03/wordpress-tipshow-to-display-other-blogs-feeds-to-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 15:47:28 +0000</pubDate>
		<dc:creator>Jers</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress tips]]></category>
		<category><![CDATA[Display Other Blogs Feeds]]></category>

		<guid isPermaLink="false">http://www.easylifeguide.net/2007/12/03/wordpress-tipshow-to-display-other-blogs-feeds-to-your-wordpress-blog/</guid>
		<description><![CDATA[There are several plug-ins available out there for this functionality, but if you are like me who is a bit lazy   , here&#8217;s a simple way to add other blog&#8217;s feeds to your wordpress blog.
How To Display Other Blogs Feeds to Your WordPress Blog

Open the template file you want to put the other [...]]]></description>
			<content:encoded><![CDATA[<p>There are several plug-ins available out there for this functionality, but if you are like me who is a bit lazy <img src='http://www.easylifeguide.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , here&#8217;s a simple way to add other blog&#8217;s feeds to your wordpress blog.</p>
<p><strong>How To Display Other Blogs Feeds to Your WordPress Blog</strong></p>
<ol>
<li>Open the template file you want to put the other blogs&#8217; feeds. For illustration purposes, we will going to edit the sidebar.php. Our goal is to display the latest n posts of our target blog. In my example, we will going to display the latest 3 posts.</li>
<li>To do this, just add the following code anywhere in the sidebar.php where you want to display the feeds, customizing the highlighted text with your own preference :</li>
<p><span id="more-24"></span></p>
<pre>&lt;h2&gt;&lt;?php _e('<strong>LifeGuide</strong>'); ?&gt;&lt;/h2&gt;
&lt;?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('<strong>http://feeds.feedburner.com/EasyLifeGuide</strong>');
$maxitems = <strong>3</strong>;
$items = array_slice($rss-&gt;items, 0, $maxitems);
?&gt;
&lt;ul&gt;
&lt;?php if (empty($items)) echo '&lt;li&gt;No items&lt;/li&gt;';
else
foreach ( $items as $item ) : ?&gt;
&lt;li&gt;&lt;a href='&lt;?php echo $item['link']; ?&gt;'
title='&lt;?php echo $item['title']; ?&gt;'&gt;
&lt;?php echo $item['title']; ?&gt;
&lt;/a&gt;&lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ul&gt;</pre>
<li>Apply some CSS customization on the appearance, the above code should look like the image below.</li>
</ol>
<p style="text-align: center"><img src="http://www.easylifeguide.net/wp-content/uploads/rss.jpg" id="others" alt="rss.jpg" /></p>
<p style="text-align: center">&nbsp;</p>
<p>Source(s): Wordpress Documentation</p>
]]></content:encoded>
			<wfw:commentRss>http://www.easylifeguide.net/2007/12/03/wordpress-tipshow-to-display-other-blogs-feeds-to-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Tips: Customizing the &#8216;Read More&#8217; &#8211; Designing the Read More Link</title>
		<link>http://www.easylifeguide.net/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/</link>
		<comments>http://www.easylifeguide.net/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 03:05:47 +0000</pubDate>
		<dc:creator>Jers</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress tips]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Read More Link]]></category>

		<guid isPermaLink="false">http://www.easylifeguide.net/index.php/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/</guid>
		<description><![CDATA[On my previous post about customizing The Read More Link, we had learned how to make the link jump to the top of the page. If you don&#8217;t want that kind of behavior on your read more links, you may leave the code as is. Now if you want your excerpt to be more enticing [...]]]></description>
			<content:encoded><![CDATA[<p>On my previous post about <a href="http://www.easylifeguide.net/index.php/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/" title="Link jumps to top of page" target="_blank">customizing The Read More Link</a>, we had learned how to make the link jump to the top of the page. If you don&#8217;t want that kind of behavior on your read more links, you may leave the code as is. Now if you want your excerpt to be more enticing and inviting to the readers to continue reading, you might want to customize how the read more link will be displayed.</p>
<p>By default, the read more tag displays <strong><code>more...</code></strong></p>
<p>If you want to change the words from <em>more&#8230;.</em> to something else, just type in the new words into the tag.</p>
<p><strong>Designing the Read More Link</strong><span id="more-22"></span></p>
<ol>
<li> Open your current theme template files that contain the <strong><code>&lt;?php the_content();?&gt;</code></strong> tag. These files are usually the <strong><code>index.php </code></strong>and <strong><code>single.php</code></strong> files located at <code>/&lt;root&gt;/wp-content/themes/&lt;current theme directory&gt;</code>.</li>
<li>To change the way your Read More link appears on your front page, lets edit the index.php file. Open the file in any text editor.</li>
<li>Look for the call on <code>&lt;?php the_content()?&gt;. </code>The call may contain some customized words already, but since we want to place our own customized words, say &#8216;Please click here to continue reading&#8217;, we will edit the parameter to look something like this:</li>
<p><code>&lt;?php the_content('Please Click here to continue reading »'); ?&gt;</code></p>
<li>When you load your  page,  the  read more tag will be changed from (more&#8230;) to &#8216;Please click here to continue reading »&#8217;</li>
<p style="text-align: center"><img src="http://www.easylifeguide.net/wp-content/uploads/b4.jpg" id="others" alt="b4.jpg" /></p>
<p style="text-align: center"><img src="http://www.easylifeguide.net/wp-content/uploads/after.jpg" id="others" alt="after.jpg" /></p>
<li>If you want to customize the appearance of your read more link, you may edit your CSS file.</li>
</ol>
<p>That&#8217;s it <img src='http://www.easylifeguide.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Part 1: <a href="http://www.easylifeguide.net/index.php/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/" title="read more" target="_blank">Customizing the ‘Read More’ &#8211; Link Jumps to Top of Page </a></p>
<p>Upcoming Post(s):</p>
<ul>
<li> Customizing the ‘Read More’ &#8211; Adding image to the Read More link</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.easylifeguide.net/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Tips: Customizing the &#8216;Read More&#8217; &#8211; Link Jumps to Top of Page</title>
		<link>http://www.easylifeguide.net/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/</link>
		<comments>http://www.easylifeguide.net/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 13:38:50 +0000</pubDate>
		<dc:creator>Jers</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress tips]]></category>
		<category><![CDATA[Customizing the 'Read More']]></category>

		<guid isPermaLink="false">http://www.easylifeguide.net/index.php/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/</guid>
		<description><![CDATA[If you are using Wordpress, maybe you are familiar with the &#8216;more&#8217; (&#60;!&#8211;more&#8211;&#62;) tag. If this tag sounds unfamiliar, here&#8217;s a short description on its usage:
more &#8211; &#60;!&#8211;more&#8211;&#62; WordPress tag that breaks a post into &#8220;teaser&#8221; and content sections. Type a few paragraphs, insert this tag, then compose the rest of your post. On your [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.easylifeguide.net/wp-content/uploads/readmore.jpg" id="others" alt="readmore.jpg" align="left" hspace="5" vspace="5" />If you are using Wordpress, maybe you are familiar with the &#8216;more&#8217; <em>(&lt;!&#8211;more&#8211;&gt;)</em> tag. If this tag sounds unfamiliar, here&#8217;s a short description on its usage:</p>
<p><em>more &#8211; &lt;!&#8211;more&#8211;&gt; WordPress tag that breaks a post into &#8220;teaser&#8221; and content sections. Type a few paragraphs, insert this tag, then compose the rest of your post. On your blog&#8217;s home page you&#8217;ll see only those first paragraphs with a hyperlink (<code>(more...)</code>), which when followed displays the rest of the post&#8217;s content. </em></p>
<p>Source: Wordpress Codex</p>
<p><strong>How to use</strong></p>
<ol>
<li>While writing your post, just click the area where you want to end the excerpted content of your post and click the &#8216;more&#8217; button on the Quicktag area
<ul><em>The quicktags are the little buttons found above the editing window in your Administration -&gt; Write -&gt; Post SubPanel.</em></p>
<p style="text-align: center"><img src="http://www.easylifeguide.net/wp-content/uploads/admin.jpg" id="others" alt="admin.jpg" /></p>
</ul>
</li>
<p><span id="more-15"></span></p>
<li>You can now continue with the rest of your post. When viewed on your site&#8217;s front page, your entry will now appear as an excerpt of your post up to the &#8216;<strong>more</strong>&#8216; point. Your readers can now continue reading the entire article by clicking the link generated by the &#8216;more&#8217; tag, pointing to the rest of your post <em>(default)</em>.</li>
<p style="text-align: center"><img src="http://www.easylifeguide.net/wp-content/uploads/readmoreimage.jpg" id="others" alt="readmoreimage.jpg" /></p>
</ol>
<p><strong>Link Jumps to Top of Page</strong></p>
<p>By default, clicking the read more link will load the page and jump to the area where you  placed <tt>the &lt;--more--&gt;</tt> tag. But there are some instances that you want to change its default behavior <em>(just like this blog)</em>. Here&#8217;s How:</p>
<p>NOTE:  <em>Applicable in WP 2.1  and higher only. When you upgrade wordpress to a higher version, it is most likely that the file will be overridden so just take note of the changes you had done and apply it to the new version (where applicable).</em></p>
<ol>
<li>Open the file <code>wp-includes/template-functions-post.php</code></li>
<li>Look for the following code:</li>
<p align="left"><code>$output .= ' &lt;a href="'. get_permalink() . "#more-$id\"<br />
class=\"more-link\"&gt;$more_link_text&lt;/a&gt;";</code></p>
<li>Change the above code to the following code:</li>
<p align="left"><code>$output .= ' &lt;a href="'. get_permalink() ."\"&gt;$more_link_text&lt;/a&gt;";</code></p>
<li>The next time you click the &#8216;read more&#8217; link, it will point and jump to the top of page.</li>
</ol>
<p>Part 2: <a href="http://www.easylifeguide.net/index.php/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/" title="designing read more" target="_blank">Customizing the &#8216;Read More&#8217; &#8211; Designing the Read More Link</a></p>
<p>Upcoming Post(s):</p>
<ul>
<li>Customizing the &#8216;Read More&#8217; &#8211; Adding image to the Read More link</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.easylifeguide.net/2007/11/19/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
