<?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 &#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>How To &#124; Make Money Online &#124; Freelancing advice and Tips &#124;  Work From Home Jobs &#124; Resignation Letter Templates &#124; Cover Letter Templates &#124; Philippines</description>
	<lastBuildDate>Thu, 05 Jan 2012 04:18:28 +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>Add a Facebook Comment Box to Each Post / Page of Your WordPress Blog</title>
		<link>http://www.easylifeguide.net/facebook-comment-box-every-post/</link>
		<comments>http://www.easylifeguide.net/facebook-comment-box-every-post/#comments</comments>
		<pubDate>Sat, 28 May 2011 10:36:39 +0000</pubDate>
		<dc:creator>Jers</dc:creator>
				<category><![CDATA[Wordpress tips]]></category>
		<category><![CDATA[comment box appear every post]]></category>
		<category><![CDATA[facebook box appear on every post]]></category>

		<guid isPermaLink="false">http://www.easylifeguide.net/?p=902</guid>
		<description><![CDATA[It is easy to add a facebook comment box on every post of your wordpress blog. All you have to do is to go to facebook comments plugin page and get your facebook comment box code. Paste the generated code [....] <a class="readmore" href="http://www.easylifeguide.net/facebook-comment-box-every-post/"> READ MORE </a> ]]></description>
			<content:encoded><![CDATA[<p>It is easy to add a facebook comment box on every post of your wordpress blog. All you have to do is to go to <a href="http://developers.facebook.com/docs/reference/plugins/comments/">facebook comments plugin page</a> and get your facebook comment box code. Paste the generated code on specific areas of your wordpress blog where you want the comment box to appear (usually at loop-single.php or single.php).</p>
<p>The code usually look like this, where example.com is the URL of your wordpress blog:<br />
<code><br />
&lt;div id="fb-root"&gt;&lt;/div&gt;&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:comments href="example.com" num_posts="2" width="500"&gt;&lt;/fb:comments&gt;</code></p>
<p>The problem with the above code is that all comments made by users will appear on each and every post on your blog making the comment irrelevant on other pages. To solve this, all you have to do is to add the permalink of each of your pages on the generated code.</p>
<h2>How to Display Facebook Comment Box on Every Post</h2>
<p>&nbsp;</p>
<p>To do this, replace the above generated code with this:<br />
<code><br />
&lt;div id="fb-root"&gt;&lt;/div&gt;&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:comments <span style="color: #0000ff;"><strong>href="&lt;?php the_permalink(); ?&gt;"</strong></span> num_posts="2" width="500"&gt;&lt;/fb:comments&gt; </code></p>
<p>Replacing the URL of your site to href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; will solve the above problem and comments on every post should appear on their respected pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.easylifeguide.net/facebook-comment-box-every-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Display Other Blog&#8217;s Feeds to Your WordPress Blog</title>
		<link>http://www.easylifeguide.net/display-other-blog-feed/</link>
		<comments>http://www.easylifeguide.net/display-other-blog-feed/#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>
		<category><![CDATA[how to display feeds from other blogs]]></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 [....] <a class="readmore" href="http://www.easylifeguide.net/display-other-blog-feed/"> READ MORE </a> ]]></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>
<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 id="others" src="http://www.easylifeguide.net/wp-content/uploads/rss.jpg" 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/display-other-blog-feed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Customize The Read More Link for Twentyten Child Theme</title>
		<link>http://www.easylifeguide.net/customize-read-more-twentyten-child/</link>
		<comments>http://www.easylifeguide.net/customize-read-more-twentyten-child/#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[customize read more link twentyten]]></category>
		<category><![CDATA[How to customize read more link]]></category>
		<category><![CDATA[Read More Link]]></category>
		<category><![CDATA[twentyten child theme]]></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[Changing the text of your wordpress blog&#8217;s read more link is really easy. There are two instances where a read more link appears, the default one, where the function the_content is used, and the posts excerpt where the_excerpt function is [....] <a class="readmore" href="http://www.easylifeguide.net/customize-read-more-twentyten-child/"> READ MORE </a> ]]></description>
			<content:encoded><![CDATA[<p>Changing the text of your wordpress blog&#8217;s read more link is really easy. There are two instances where a read more link appears, the default one, where the function the_content is used, and the posts excerpt where the_excerpt function is used.</p>
<h2>Customizing the read more link (the_content)</h2>
<p>To customize the read more link for your posts, just edit the corresponding parameter of the function the_content wherever it is called,  usually at loop-index.php of your child theme. Just type the text that you want to use as shown in the example below:  <code> &lt;?php the_content( __( 'Continue reading the rest of the article &lt;span&gt;&amp;rarr;&lt;/span&gt;', 'twentyten' ) ); ?&gt; </code></p>
<h2>Customizing the read more link (the_excerpt)</h2>
<p>Customizing the read more link for your summary pages (the_excerpt) is a little more complicated. Here&#8217;s what you need to do:</p>
<ul>
<li>Open your child theme&#8217;s function.php file</li>
<li>Add the following functions</li>
<li>Edit the read more text below on the text that you want to be used.</li>
</ul>
<p><code> function after_setup_theme_extend(){    remove_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );} function new_excerpt_more($more) {	return ' [....] &lt;a href="'. get_permalink($post-&gt;ID) . '"&gt; Continue reading this article&lt;/a&gt; '   ;} add_filter('excerpt_more', 'new_excerpt_more'); </code></p>
<p>That&#8217;s it. Your read more text should be customized upon viewing your wordpress site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.easylifeguide.net/customize-read-more-twentyten-child/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/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/</link>
		<comments>http://www.easylifeguide.net/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. [....] <a class="readmore" href="http://www.easylifeguide.net/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/"> READ MORE </a> ]]></description>
			<content:encoded><![CDATA[<p>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>&nbsp;</p>
<p style="text-align: center;"><img id="others" src="http://www.easylifeguide.net/wp-content/uploads/admin.jpg" 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 id="others" src="http://www.easylifeguide.net/wp-content/uploads/readmoreimage.jpg" 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><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><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 title="designing read more" href="http://www.easylifeguide.net/index.php/2007/11/24/wordpress-tipscustomizing-the-read-more-designing-the-read-more-link/" 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/wordpress-tips-customizing-the-read-more-link-jumps-to-top-of-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

