<?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>WordpressBoys &#187; Wordpress Functions</title>
	<atom:link href="http://www.wordpressboys.com/tag/wordpress-functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wordpressboys.com</link>
	<description>The Buddypress and Wordpress CMS Customization, Design, Development and PSD to WP and Buddypress Theme Experts</description>
	<lastBuildDate>Mon, 23 Aug 2010 12:49:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Display List of Authors?</title>
		<link>http://www.wordpressboys.com/wordpress/how-to-display-list-of-authors/</link>
		<comments>http://www.wordpressboys.com/wordpress/how-to-display-list-of-authors/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 23:35:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Wordpress Functions]]></category>

		<guid isPermaLink="false">http://www.wordpressboys.com/?p=96</guid>
		<description><![CDATA[Here is how you can display a list of the authors (users) associated with your WordPress Blog, and if the user has authored any posts, the author name is displayed as a link to their posts. Optionally this tag displays each author&#8217;s post count and RSS feed link. &#60;?php wp_list_authors( $args ); ?&#62;]]></description>
			<content:encoded><![CDATA[<p>Here is how you can display a list of the authors (users) associated with your WordPress Blog, and if the user has authored any posts, the author name is displayed as a link to their posts. Optionally this tag displays each author&#8217;s post count and RSS feed link.</p>
<pre>&lt;?php wp_list_authors( $args ); ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressboys.com/wordpress/how-to-display-list-of-authors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the &#8220;Read More&#8221; link?</title>
		<link>http://www.wordpressboys.com/wordpress/how-to-change-the-read-more-link/</link>
		<comments>http://www.wordpressboys.com/wordpress/how-to-change-the-read-more-link/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 22:56:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Wordpress Dashboard]]></category>
		<category><![CDATA[Wordpress Functions]]></category>
		<category><![CDATA[Wordpress TIPS]]></category>

		<guid isPermaLink="false">http://www.wordpressboys.com/?p=87</guid>
		<description><![CDATA[In the WordPress Templates we generally see the &#8220;Read More&#8221; links at the end of the small excerpt text. Wanna change the text to something else? Then please follow the steps. 1. Navigate to Appearance &#8211;&#62; Editor in your WordPress Dashboard 2. Open your &#8220;index.php&#8221; or file and find this line: &#60;?php the_content(__('Read more'));?&#62; 3. [...]]]></description>
			<content:encoded><![CDATA[<p>In the WordPress Templates we generally see the &#8220;Read More&#8221; links at the end of the small excerpt text. Wanna change the text to something else? Then please follow the steps.</p>
<p>1. Navigate to Appearance &#8211;&gt; Editor in your WordPress Dashboard<br />
2. Open your &#8220;index.php&#8221; or file and find this line:</p>
<pre>&lt;?php the_content(__('Read more'));?&gt;</pre>
<p>3. replace it with this one:  </p>
<pre>&lt;?php the_content("YOUR OWN TEXT" . the_title(",",false), 0); ?&gt;</pre>
<p>Have doubts? Contact or Call us now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressboys.com/wordpress/how-to-change-the-read-more-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove Excerpt if left empty?</title>
		<link>http://www.wordpressboys.com/wordpress/how-to-remove-excerpt-if-left-empty/</link>
		<comments>http://www.wordpressboys.com/wordpress/how-to-remove-excerpt-if-left-empty/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 22:37:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Wordpress Functions]]></category>
		<category><![CDATA[Wordpress TIPS]]></category>

		<guid isPermaLink="false">http://www.wordpressboys.com/?p=79</guid>
		<description><![CDATA[In WordPress &#8220;the_Excerpt()&#8221; displays the excerpt filed value of the current post with [...] at the end, which is not a &#8220;read more&#8221; link. If you do not provide an explicit excerpt to a post (in the post editor&#8217;s optional excerpt field), it will display a teaser which refers to the first 55 words of [...]]]></description>
			<content:encoded><![CDATA[<p>In WordPress &#8220;the_Excerpt()&#8221; displays the excerpt filed value of the current post with [...] at the end, which is not a &#8220;read more&#8221; link. If you do not provide an explicit excerpt to a post (in the post editor&#8217;s optional excerpt field), it will display a teaser which refers to the first 55 words of the post&#8217;s content.</p>
<p>By default, if you have your theme set to display the excerpt and nothing is entered, WordPress will just display the full text instead. If you want don’t want anything displayed then simply place the following code wherever you want the excerpt to appear (or not)</p>
<p><code><br />
</code></p>
<p><pre>&lt;?php if(!empty($post-&gt;post_excerpt)) {the_excerpt(); } ?&gt;</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressboys.com/wordpress/how-to-remove-excerpt-if-left-empty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
