<?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>WpFunc &#187; theme</title>
	<atom:link href="http://www.wpfunc.com/tag/theme/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Fri, 09 Jul 2010 09:05:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Udegbunam Asked &#8220;How i hide my content from IE6 Users?&#8221;</title>
		<link>http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html</link>
		<comments>http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html#comments</comments>
		<pubDate>Fri, 11 Jun 2010 10:06:06 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[have_posts]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[index.php]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Udegbunam]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=440</guid>
		<description><![CDATA[Hi again. I know i can&#8217;t write near 20 days. But Udegbunam asked me a question on this post. I try some code on this problem and i found a solution for this. You know, i write an article about using  Two or more single php. I used some if and else option for change [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/use-two-or-more-single-php.html' rel='bookmark' title='Permanent Link: Use Two or More Single.php'>Use Two or More Single.php</a></li>
<li><a href='http://www.wpfunc.com/wordpress/how-to-include-comments-in-posts-lists.html' rel='bookmark' title='Permanent Link: How to include comments in posts lists?'>How to include comments in posts lists?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/add-breadcumbs-without-a-plugin.html' rel='bookmark' title='Permanent Link: Add Breadcumbs without a plugin!'>Add Breadcumbs without a plugin!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi again. I know i can&#8217;t write near 20 days. But <a href="http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html#comment-56" target="_blank">Udegbunam asked me a question on this post</a>. I try some code on this problem and i found a solution for this. You know, i write an article about using  <a href="http://www.wpfunc.com/wordpress/use-two-or-more-single-php.html" target="_blank">Two or more single php</a>. <span id="more-440"></span>I used some if and else option for change single.php for each category. With this code we can change our index.php for IE6 users. Nearly simple code and we can use this with different browsers (IE7, Safari etc.).  Lets begin!</p>
<p style="text-align: justify;"><span class="alert">Before start make a backup of your theme&#8217;s index.php. I used default theme&#8217;s files for this. Your template can have different files or codes.</span></p>
<p style="text-align: justify;">Firstly we have to copy our real index.php twice. After that rename them with <span style="color: #ff0000;"><strong>index-ie6.php</strong></span> and <span style="color: #ff0000;"><strong>index-real.php</strong></span>. Clear <strong><span style="color: #ff0000;">index.php</span></strong>&#8216;s code and place that code below;</p>
<pre class="brush: php;">&lt;?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false) {
include(TEMPLATEPATH . '/index-ie6.php'); }
else { include(TEMPLATEPATH . '/index-real.php');
}
?&gt;</pre>
<p style="text-align: justify;">After that we change index-ie6.php for IE6 users. I simply change <span style="color: #ff0000;"><strong>have_post</strong></span><span style="color: #ff0000;">s</span> function with a <span style="color: #ff0000;"><strong>h3</strong></span> :). Here is the <span style="color: #ff0000;"><strong>index-ie6.php</strong></span>;</p>
<pre class="brush: php;">&lt;?php
/**
 * @package WordPress
 * @subpackage Default_Theme
 */

get_header(); ?&gt;

	&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot; role=&quot;main&quot;&gt;
&lt;div&gt;&lt;h3&gt;Sorry You're using Internet Explorer 6 &lt;/h3&gt;&lt;/div&gt;

	&lt;/div&gt;

&lt;?php get_sidebar(); ?&gt;

&lt;?php get_footer(); ?&gt;
</pre>
<p style="text-align: justify;"><span style="color: #ff0000;"><strong>Don&#8217;t change index-real.php&#8217;s codes. This is the real index.php of your theme.</strong></span><br />
That&#8217;s All. There is no more code :) If you want i take some screenshots for this. IE6, IE8 and Firefox.</p>

<a href='http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html/attachment/firefox' title='Firefox Works Regularly'><img width="150" height="150" src="http://www.wpfunc.com/wp-content/uploads/2010/06/firefox-150x150.png" class="attachment-thumbnail" alt="Firefox Works Regularly" title="Firefox Works Regularly" /></a>
<a href='http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html/attachment/ie6' title='IE 6 shows what we write'><img width="150" height="150" src="http://www.wpfunc.com/wp-content/uploads/2010/06/ie6-150x150.png" class="attachment-thumbnail" alt="IE 6 shows what we write" title="IE 6 shows what we write" /></a>
<a href='http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html/attachment/ie8' title='IE8 Works Regularly'><img width="150" height="150" src="http://www.wpfunc.com/wp-content/uploads/2010/06/ie8-150x150.png" class="attachment-thumbnail" alt="IE8 Works Regularly" title="IE8 Works Regularly" /></a>

<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;title=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22&amp;notes=Hi%20again.%20I%20know%20i%20can%27t%20write%20near%2020%20days.%20But%20Udegbunam%20asked%20me%20a%20question%20on%20this%20post.%20I%20try%20some%20code%20on%20this%20problem%20and%20i%20found%20a%20solution%20for%20this.%20You%20know%2C%20i%20write%20an%20article%20about%20using%C2%A0%20Two%20or%20more%20single%20php.%20I%20used%20some%20if%20and%20else%20o'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;title=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22&amp;bodytext=Hi%20again.%20I%20know%20i%20can%27t%20write%20near%2020%20days.%20But%20Udegbunam%20asked%20me%20a%20question%20on%20this%20post.%20I%20try%20some%20code%20on%20this%20problem%20and%20i%20found%20a%20solution%20for%20this.%20You%20know%2C%20i%20write%20an%20article%20about%20using%C2%A0%20Two%20or%20more%20single%20php.%20I%20used%20some%20if%20and%20else%20o'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;t=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;title=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;title=Udegbunam%20Asked%20%22How%20i%20hide%20my%20content%20from%20IE6%20Users%3F%22'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fudegbunam-asked-how-i-hide-my-content-from-ie6-users.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/use-two-or-more-single-php.html' rel='bookmark' title='Permanent Link: Use Two or More Single.php'>Use Two or More Single.php</a></li>
<li><a href='http://www.wpfunc.com/wordpress/how-to-include-comments-in-posts-lists.html' rel='bookmark' title='Permanent Link: How to include comments in posts lists?'>How to include comments in posts lists?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/add-breadcumbs-without-a-plugin.html' rel='bookmark' title='Permanent Link: Add Breadcumbs without a plugin!'>Add Breadcumbs without a plugin!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/udegbunam-asked-how-i-hide-my-content-from-ie6-users.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show timestamps like social networks!</title>
		<link>http://www.wpfunc.com/wordpress/show-timestamps-like-social-networks.html</link>
		<comments>http://www.wpfunc.com/wordpress/show-timestamps-like-social-networks.html#comments</comments>
		<pubDate>Mon, 12 Apr 2010 17:12:45 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[timestamp]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=418</guid>
		<description><![CDATA[You can show your timestamps like other social networks. With this simple and awesome trick, you can change long date and time stamps with ex. twitter&#8217;s &#8220;1 min ago&#8220;. Lets begin&#8230;
Here is the code;
Add this code into your theme&#8217;s functions.php;
function time_ago( $type = 'post' ) {
	$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';

	return human_time_diff($d('U'), [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/add-social-bookmarks-bar-into-your-blog.html' rel='bookmark' title='Permanent Link: Add Social Bookmarks Bar into your Blog!'>Add Social Bookmarks Bar into your Blog!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html' rel='bookmark' title='Permanent Link: Show Default Theme for IE6 Visitors!'>Show Default Theme for IE6 Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-last-twitter-update-without-a-plugin.html' rel='bookmark' title='Permanent Link: Show Your Last Twitter Update Without a Plugin'>Show Your Last Twitter Update Without a Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can show your timestamps like other social networks. With this simple and awesome trick, you can change long date and time stamps with ex. twitter&#8217;s &#8220;<strong>1 min ago</strong>&#8220;. Lets begin&#8230;<span id="more-418"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">Add this code into your theme&#8217;s functions.php;</p>
<pre class="brush: php;">function time_ago( $type = 'post' ) {
	$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';

	return human_time_diff($d('U'), current_time('timestamp')) . &quot; &quot; . __('ago');

}</pre>
<p style="text-align: justify;">After that call this function wherever you want!</p>
<pre class="brush: php;">&lt;?php echo time_ago(); ?&gt;</pre>
<p style="text-align: justify;">That&#8217;s All! Have a nice day.</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;title=Show%20timestamps%20like%20social%20networks%21&amp;notes=You%20can%20show%20your%20timestamps%20like%20other%20social%20networks.%20With%20this%20simple%20and%20awesome%20trick%2C%20you%20can%20change%20long%20date%20and%20time%20stamps%20with%20ex.%20twitter%27s%20%221%20min%20ago%22.%20Lets%20begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AAdd%20this%20code%20into%20your%20theme%27s%20functions.php%3B%0D%0A'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;title=Show%20timestamps%20like%20social%20networks%21&amp;bodytext=You%20can%20show%20your%20timestamps%20like%20other%20social%20networks.%20With%20this%20simple%20and%20awesome%20trick%2C%20you%20can%20change%20long%20date%20and%20time%20stamps%20with%20ex.%20twitter%27s%20%221%20min%20ago%22.%20Lets%20begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AAdd%20this%20code%20into%20your%20theme%27s%20functions.php%3B%0D%0A'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;t=Show%20timestamps%20like%20social%20networks%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Show%20timestamps%20like%20social%20networks%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;title=Show%20timestamps%20like%20social%20networks%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;title=Show%20timestamps%20like%20social%20networks%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-timestamps-like-social-networks.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/add-social-bookmarks-bar-into-your-blog.html' rel='bookmark' title='Permanent Link: Add Social Bookmarks Bar into your Blog!'>Add Social Bookmarks Bar into your Blog!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html' rel='bookmark' title='Permanent Link: Show Default Theme for IE6 Visitors!'>Show Default Theme for IE6 Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-last-twitter-update-without-a-plugin.html' rel='bookmark' title='Permanent Link: Show Your Last Twitter Update Without a Plugin'>Show Your Last Twitter Update Without a Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/show-timestamps-like-social-networks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Protected and Private from title!</title>
		<link>http://www.wpfunc.com/wordpress/remove-protected-and-private-from-title.html</link>
		<comments>http://www.wpfunc.com/wordpress/remove-protected-and-private-from-title.html#comments</comments>
		<pubDate>Fri, 26 Feb 2010 19:00:19 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[protected]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=405</guid>
		<description><![CDATA[Add this code to functions.php in theme directory. This code removes &#8220;protected&#8221; and &#8220;private&#8221; prefixs from your article titles. Let&#8217;s Begin&#8230;

Here is the code;
function the_title_trim($title) {
	$title = attribute_escape($title);
	$findthese = array(
		'#Protected:#',
		'#Private:#'
	);
	$replacewith = array(
		'', // What to replace &#34;Protected:&#34; with
		'' // What to replace &#34;Private:&#34; with
	);
	$title = preg_replace($findthese, $replacewith, $title);
	return $title;
}
add_filter('the_title', 'the_title_trim');

That&#8217;s All!


Related posts:How to change your [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html' rel='bookmark' title='Permanent Link: How to change your Post/Page title with a custom field?'>How to change your Post/Page title with a custom field?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/how-to-highlight-searched-text-in-results.html' rel='bookmark' title='Permanent Link: How to Highlight Searched Text In Results'>How to Highlight Searched Text In Results</a></li>
<li><a href='http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html' rel='bookmark' title='Permanent Link: Remove menus in Dashboard!'>Remove menus in Dashboard!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Add this code to <span style="color: #ff0000;"><strong>functions.php</strong></span> in theme directory. This code removes &#8220;<strong>protected</strong>&#8221; and &#8220;<strong>private</strong>&#8221; prefixs from your article titles. Let&#8217;s Begin&#8230;</p>
<p><span id="more-405"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php;">function the_title_trim($title) {
	$title = attribute_escape($title);
	$findthese = array(
		'#Protected:#',
		'#Private:#'
	);
	$replacewith = array(
		'', // What to replace &quot;Protected:&quot; with
		'' // What to replace &quot;Private:&quot; with
	);
	$title = preg_replace($findthese, $replacewith, $title);
	return $title;
}
add_filter('the_title', 'the_title_trim');
</pre>
<p>That&#8217;s All!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;title=Remove%20Protected%20and%20Private%20from%20title%21&amp;notes=Add%20this%20code%20to%20functions.php%20in%20theme%20directory.%20This%20code%20removes%20%22protected%22%20and%20%22private%22%20prefixs%20from%20your%20article%20titles.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dfunction%20the_title_trim%28%24title%29%20%7B%0D%0A%09%24title%20%3D%20attribute_escape%28%24title%29%3B%0D%0A%09%24findt'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;title=Remove%20Protected%20and%20Private%20from%20title%21&amp;bodytext=Add%20this%20code%20to%20functions.php%20in%20theme%20directory.%20This%20code%20removes%20%22protected%22%20and%20%22private%22%20prefixs%20from%20your%20article%20titles.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dfunction%20the_title_trim%28%24title%29%20%7B%0D%0A%09%24title%20%3D%20attribute_escape%28%24title%29%3B%0D%0A%09%24findt'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;t=Remove%20Protected%20and%20Private%20from%20title%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Remove%20Protected%20and%20Private%20from%20title%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;title=Remove%20Protected%20and%20Private%20from%20title%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;title=Remove%20Protected%20and%20Private%20from%20title%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-protected-and-private-from-title.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html' rel='bookmark' title='Permanent Link: How to change your Post/Page title with a custom field?'>How to change your Post/Page title with a custom field?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/how-to-highlight-searched-text-in-results.html' rel='bookmark' title='Permanent Link: How to Highlight Searched Text In Results'>How to Highlight Searched Text In Results</a></li>
<li><a href='http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html' rel='bookmark' title='Permanent Link: Remove menus in Dashboard!'>Remove menus in Dashboard!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/remove-protected-and-private-from-title.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Tabs for your Sidebar!</title>
		<link>http://www.wpfunc.com/wordpress/make-tabs-for-your-sidebar.html</link>
		<comments>http://www.wpfunc.com/wordpress/make-tabs-for-your-sidebar.html#comments</comments>
		<pubDate>Sat, 20 Feb 2010 20:40:23 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[sliding]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=398</guid>
		<description><![CDATA[I found this article in BlogOhBlog. there is some plugins for this and most premium themes have special tabs like that. You can do this without any plugin or any help. Just read this article and use this codes. Easy and minimal -simple- tabs. Lets Begin!
Here is the code;
First; download this file and extract gomtabs.js [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/use-tabs-in-your-blog.html' rel='bookmark' title='Permanent Link: Use Tabs in Your Blog!'>Use Tabs in Your Blog!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/a-simple-login-form-for-your-sidebar.html' rel='bookmark' title='Permanent Link: A Simple Login Form For Your Sidebar!'>A Simple Login Form For Your Sidebar!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/make-your-rss-feed-link-auto-discoverable.html' rel='bookmark' title='Permanent Link: Make Your RSS Feed Link Auto Discoverable!'>Make Your RSS Feed Link Auto Discoverable!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I found this article in BlogOhBlog. there is some plugins for this and most premium themes have special tabs like that. You can do this without any plugin or any help. Just read this article and use this codes. Easy and minimal -simple- tabs. Lets Begin!<span id="more-398"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">First; download this file and extract gomtabs.js and domtabs.css into your theme folder.</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p style="text-align: justify;">After that make a backup of header.php and open it. Add this code before the<span style="color: #ff0000;"><strong> &lt;/head&gt;</strong></span> tag;</p>
<pre class="brush: php;">&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/domtab.js&quot;&gt;&lt;/script&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/domtab.css&quot; media=&quot;screen&quot; /&gt;</pre>
<p style="text-align: justify;">Save the file and upload the server. After this you can add this code into any file of your theme. Change code what you can add;</p>
<pre class="brush: php;">&lt;div class=&quot;domtab&quot;&gt;
&lt;ul class=&quot;domtabs&quot;&gt;
&lt;li&gt;&lt;a href=&quot;#t1&quot;&gt;Tab 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#t2&quot;&gt;Tab 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#t3&quot;&gt;Tab 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;a name=&quot;t1&quot; id=&quot;t1&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the first tab here,
e.g. The code for a plugin.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;a name=&quot;t2&quot; id=&quot;t2&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the second tab here.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;a name=&quot;t3&quot; id=&quot;t3&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the third tab here.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;</pre>
<p style="text-align: center;"><a class="highslide img_3" href="http://www.wpfunc.com/wp-content/uploads/2010/02/jquery-tabs.gif" onclick="return hs.expand(this)"><img class="size-full wp-image-399 aligncenter" title="jquery-tabs" src="http://www.wpfunc.com/wp-content/uploads/2010/02/jquery-tabs.gif" alt="" width="273" height="138" /></a></p>
<p style="text-align: justify;">That&#8217;s All. Have a nice day!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;title=Make%20Tabs%20for%20your%20Sidebar%21&amp;notes=I%20found%20this%20article%20in%20BlogOhBlog.%20there%20is%20some%20plugins%20for%20this%20and%20most%20premium%20themes%20have%20special%20tabs%20like%20that.%20You%20can%20do%20this%20without%20any%20plugin%20or%20any%20help.%20Just%20read%20this%20article%20and%20use%20this%20codes.%20Easy%20and%20minimal%20-simple-%20tabs.%20Lets%20Be'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;title=Make%20Tabs%20for%20your%20Sidebar%21&amp;bodytext=I%20found%20this%20article%20in%20BlogOhBlog.%20there%20is%20some%20plugins%20for%20this%20and%20most%20premium%20themes%20have%20special%20tabs%20like%20that.%20You%20can%20do%20this%20without%20any%20plugin%20or%20any%20help.%20Just%20read%20this%20article%20and%20use%20this%20codes.%20Easy%20and%20minimal%20-simple-%20tabs.%20Lets%20Be'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;t=Make%20Tabs%20for%20your%20Sidebar%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Make%20Tabs%20for%20your%20Sidebar%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;title=Make%20Tabs%20for%20your%20Sidebar%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;title=Make%20Tabs%20for%20your%20Sidebar%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-tabs-for-your-sidebar.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/use-tabs-in-your-blog.html' rel='bookmark' title='Permanent Link: Use Tabs in Your Blog!'>Use Tabs in Your Blog!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/a-simple-login-form-for-your-sidebar.html' rel='bookmark' title='Permanent Link: A Simple Login Form For Your Sidebar!'>A Simple Login Form For Your Sidebar!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/make-your-rss-feed-link-auto-discoverable.html' rel='bookmark' title='Permanent Link: Make Your RSS Feed Link Auto Discoverable!'>Make Your RSS Feed Link Auto Discoverable!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/make-tabs-for-your-sidebar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most Recent Comments! Without Any Plugin</title>
		<link>http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html</link>
		<comments>http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:59:10 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[area]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[recent commen]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[without plugin]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=376</guid>
		<description><![CDATA[We use plugin/widget for show most recent comments. But we can do that with a simple code. This code gives you simple recent comments feature without plugin. also with gravatar support. Paste this code into your theme where you want. All done!
Here is the code;
&#60;?php
$query = &#34;SELECT * from $wpdb-&#62;comments WHERE comment_approved= '1'
ORDER BY comment_date [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/how-to-add-numbers-into-comments.html' rel='bookmark' title='Permanent Link: How to Add Numbers Into Comments'>How to Add Numbers Into Comments</a></li>
<li><a href='http://www.wpfunc.com/wordpress/popular-posts-without-any-plugin.html' rel='bookmark' title='Permanent Link: Popular Posts, Without any Plugin!'>Popular Posts, Without any Plugin!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/highlight-the-author-comments.html' rel='bookmark' title='Permanent Link: Highlight the Author Comments!'>Highlight the Author Comments!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We use plugin/widget for show most recent comments. But we can do that with a simple code. This code gives you simple recent comments feature without plugin. also with gravatar support. Paste this code into your theme where you want. All done!<span id="more-376"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php;">&lt;?php
$query = &quot;SELECT * from $wpdb-&gt;comments WHERE comment_approved= '1'
ORDER BY comment_date DESC LIMIT 0 ,5&quot;;
$comments = $wpdb-&gt;get_results($query);

if ($comments) {
    echo '&lt;ul&gt;';
    foreach ($comments as $comment) {
        $url = '&lt;a href=&quot;'. get_permalink($comment-&gt;comment_post_ID).'#comment-'.$comment-&gt;comment_ID .'&quot; title=&quot;'.$comment-&gt;comment_author .' | '.get_the_title($comment-&gt;comment_post_ID).'&quot;&gt;';
        echo '&lt;li&gt;';
        echo '&lt;div class=&quot;img&quot;&gt;';
        echo $url;
        echo get_avatar( $comment-&gt;comment_author_email, $img_w);
        echo '&lt;/a&gt;&lt;/div&gt;';

        echo '&lt;div class=&quot;txt&quot;&gt;Par: ';
        echo $url;
        echo $comment-&gt;comment_author;
        echo '&lt;/a&gt;&lt;/div&gt;';
        echo '&lt;/li&gt;';
    }
    echo '&lt;/ul&gt;';
}
?&gt;
</pre>
<p>This code shows 5 recent comment. If you change &#8220;<span style="color: #ff0000;"><strong>5</strong></span>&#8221; in line two, you can display more comment or less&#8230;</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;title=Most%20Recent%20Comments%21%20Without%20Any%20Plugin&amp;notes=We%20use%20plugin%2Fwidget%20for%20show%20most%20recent%20comments.%20But%20we%20can%20do%20that%20with%20a%20simple%20code.%20This%20code%20gives%20you%20simple%20recent%20comments%20feature%20without%20plugin.%20also%20with%20gravatar%20support.%20Paste%20this%20code%20into%20your%20theme%20where%20you%20want.%20All%20done%21%0D%0A%0D%0AHer'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;title=Most%20Recent%20Comments%21%20Without%20Any%20Plugin&amp;bodytext=We%20use%20plugin%2Fwidget%20for%20show%20most%20recent%20comments.%20But%20we%20can%20do%20that%20with%20a%20simple%20code.%20This%20code%20gives%20you%20simple%20recent%20comments%20feature%20without%20plugin.%20also%20with%20gravatar%20support.%20Paste%20this%20code%20into%20your%20theme%20where%20you%20want.%20All%20done%21%0D%0A%0D%0AHer'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;t=Most%20Recent%20Comments%21%20Without%20Any%20Plugin'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Most%20Recent%20Comments%21%20Without%20Any%20Plugin&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;title=Most%20Recent%20Comments%21%20Without%20Any%20Plugin'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;title=Most%20Recent%20Comments%21%20Without%20Any%20Plugin'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmost-recent-comments-without-any-plugin.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/how-to-add-numbers-into-comments.html' rel='bookmark' title='Permanent Link: How to Add Numbers Into Comments'>How to Add Numbers Into Comments</a></li>
<li><a href='http://www.wpfunc.com/wordpress/popular-posts-without-any-plugin.html' rel='bookmark' title='Permanent Link: Popular Posts, Without any Plugin!'>Popular Posts, Without any Plugin!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/highlight-the-author-comments.html' rel='bookmark' title='Permanent Link: Highlight the Author Comments!'>Highlight the Author Comments!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change dashboard footer texts?</title>
		<link>http://www.wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html</link>
		<comments>http://www.wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:23:31 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[footer links]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress dashboard]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=371</guid>
		<description><![CDATA[When you build a theme you can use this code for hide/remove WordPress Dashboard&#8217;s links. you have to add this code into your theme&#8217;s functions.php. After that you can write your own text with dashboard footer. Let&#8217;s Begin&#8230;
Here is the code;
function remove_footer_admin () {
    echo &#34;Your own text&#34;;
}
add_filter('admin_footer_text', 'remove_footer_admin');

Don&#8217;t forget. You will [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html' rel='bookmark' title='Permanent Link: Remove menus in Dashboard!'>Remove menus in Dashboard!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html' rel='bookmark' title='Permanent Link: Show Default Theme for IE6 Visitors!'>Show Default Theme for IE6 Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/display-who-modify-your-posts.html' rel='bookmark' title='Permanent Link: Display who modify your post(s)!'>Display who modify your post(s)!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When you build a theme you can use this code for hide/remove WordPress Dashboard&#8217;s links. you have to add this code into your theme&#8217;s functions.php. After that you can write your own text with dashboard footer. Let&#8217;s Begin&#8230;<span id="more-371"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php;">function remove_footer_admin () {
    echo &quot;Your own text&quot;;
}
add_filter('admin_footer_text', 'remove_footer_admin');
</pre>
<p style="text-align: justify;">Don&#8217;t forget. You will add this code into your<em><span style="color: #ff0000;"><strong> theme&#8217;s functions.php</strong></span></em>. Have a nice day!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;title=How%20to%20change%20dashboard%20footer%20texts%3F&amp;notes=When%20you%20build%20a%20theme%20you%20can%20use%20this%20code%20for%20hide%2Fremove%20WordPress%20Dashboard%27s%20links.%20you%20have%20to%20add%20this%20code%20into%20your%20theme%27s%20functions.php.%20After%20that%20you%20can%20write%20your%20own%20text%20with%20dashboard%20footer.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bp'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;title=How%20to%20change%20dashboard%20footer%20texts%3F&amp;bodytext=When%20you%20build%20a%20theme%20you%20can%20use%20this%20code%20for%20hide%2Fremove%20WordPress%20Dashboard%27s%20links.%20you%20have%20to%20add%20this%20code%20into%20your%20theme%27s%20functions.php.%20After%20that%20you%20can%20write%20your%20own%20text%20with%20dashboard%20footer.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bp'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;t=How%20to%20change%20dashboard%20footer%20texts%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=How%20to%20change%20dashboard%20footer%20texts%3F&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;title=How%20to%20change%20dashboard%20footer%20texts%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;title=How%20to%20change%20dashboard%20footer%20texts%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-change-dashboard-footer-texts.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html' rel='bookmark' title='Permanent Link: Remove menus in Dashboard!'>Remove menus in Dashboard!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html' rel='bookmark' title='Permanent Link: Show Default Theme for IE6 Visitors!'>Show Default Theme for IE6 Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/display-who-modify-your-posts.html' rel='bookmark' title='Permanent Link: Display who modify your post(s)!'>Display who modify your post(s)!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Show Default Theme for IE6 Visitors!</title>
		<link>http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html</link>
		<comments>http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html#comments</comments>
		<pubDate>Thu, 24 Dec 2009 19:47:32 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[browser detect]]></category>
		<category><![CDATA[change theme]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=331</guid>
		<description><![CDATA[You can show &#8220;default&#8221; or &#8220;classic&#8221; theme for ie6 visitors. Because IE6 broke our themes and the other people themes. And alot of people use IE6. Let&#8217;s Begin&#8230;
Here is the code;
add_filter('template', 'serve_default_to_iesix');
add_filter('option_template', 'serve_default_to_iesix');
add_filter('option_stylesheet', 'serve_default_to_iesix');
function serve_default_to_iesix($theme) {
	if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false)
		$theme = 'default';

	return $theme;
}
Insert this code to your Theme&#8217;s functions.php. With this code we will make [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/display-custom-content-to-search-engine-visitors.html' rel='bookmark' title='Permanent Link: Display Custom Content to Search Engine Visitors!'>Display Custom Content to Search Engine Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/detect-user-browser-and-apply-a-stylesheet.html' rel='bookmark' title='Permanent Link: Detect User Browser And Apply A StyleSheet'>Detect User Browser And Apply A StyleSheet</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-timestamps-like-social-networks.html' rel='bookmark' title='Permanent Link: Show timestamps like social networks!'>Show timestamps like social networks!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can show &#8220;<em><strong>default</strong></em>&#8221; or &#8220;<em><strong>classic</strong></em>&#8221; theme for ie6 visitors. Because IE6 broke our themes and the other people themes. And alot of people use IE6. Let&#8217;s Begin&#8230;<span id="more-331"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php;">add_filter('template', 'serve_default_to_iesix');
add_filter('option_template', 'serve_default_to_iesix');
add_filter('option_stylesheet', 'serve_default_to_iesix');
function serve_default_to_iesix($theme) {
	if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false)
		$theme = 'default';

	return $theme;
}</pre>
<p style="text-align: justify;">Insert this code to your Theme&#8217;s <em><strong><span style="color: #ff0000;">functions.php</span></strong></em>. With this code we will make Browser detection and we tell wordpress &#8216;<span style="color: #ff0000;"><strong>Change theme to default if our visitors are use IE6!</strong></span>&#8216;.</p>
<p style="text-align: justify;">You can change &#8216;default&#8217; to classic or any theme name. You have to edit this lines for make changes.</p>
<pre class="brush: php;">$theme = 'default';</pre>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;title=Show%20Default%20Theme%20for%20IE6%20Visitors%21&amp;notes=You%20can%20show%20%22default%22%20or%20%22classic%22%20theme%20for%20ie6%20visitors.%20Because%20IE6%20broke%20our%20themes%20and%20the%20other%20people%20themes.%20And%20alot%20of%20people%20use%20IE6.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dadd_filter%28%27template%27%2C%20%27serve_default_to_iesix%27%29%3B%0D%0Aadd_filter%28'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;title=Show%20Default%20Theme%20for%20IE6%20Visitors%21&amp;bodytext=You%20can%20show%20%22default%22%20or%20%22classic%22%20theme%20for%20ie6%20visitors.%20Because%20IE6%20broke%20our%20themes%20and%20the%20other%20people%20themes.%20And%20alot%20of%20people%20use%20IE6.%20Let%27s%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dadd_filter%28%27template%27%2C%20%27serve_default_to_iesix%27%29%3B%0D%0Aadd_filter%28'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;t=Show%20Default%20Theme%20for%20IE6%20Visitors%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Show%20Default%20Theme%20for%20IE6%20Visitors%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;title=Show%20Default%20Theme%20for%20IE6%20Visitors%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;title=Show%20Default%20Theme%20for%20IE6%20Visitors%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-default-theme-for-ie6-visitors.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/display-custom-content-to-search-engine-visitors.html' rel='bookmark' title='Permanent Link: Display Custom Content to Search Engine Visitors!'>Display Custom Content to Search Engine Visitors!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/detect-user-browser-and-apply-a-stylesheet.html' rel='bookmark' title='Permanent Link: Detect User Browser And Apply A StyleSheet'>Detect User Browser And Apply A StyleSheet</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-timestamps-like-social-networks.html' rel='bookmark' title='Permanent Link: Show timestamps like social networks!'>Show timestamps like social networks!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/show-default-theme-for-ie6-visitors.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to include comments in posts lists?</title>
		<link>http://www.wpfunc.com/wordpress/how-to-include-comments-in-posts-lists.html</link>
		<comments>http://www.wpfunc.com/wordpress/how-to-include-comments-in-posts-lists.html#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:24:32 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[index.php]]></category>
		<category><![CDATA[inline comments]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=250</guid>
		<description><![CDATA[You can show comments on index.php. Some new themes support this. Also you can add this option to your themes.
Here is the code;
First one you download your theme&#8217;s index.php. After that open the file with your favourite text editor and paste this code wher you want to show your comments.
&#60;?php
  global $withcomments;
  $withcomments [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/disable-comments-on-30-day-older-posts.html' rel='bookmark' title='Permanent Link: Disable Comments on 30-day older posts'>Disable Comments on 30-day older posts</a></li>
<li><a href='http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html' rel='bookmark' title='Permanent Link: Most Recent Comments! Without Any Plugin'>Most Recent Comments! Without Any Plugin</a></li>
<li><a href='http://www.wpfunc.com/wordpress/simple-sticky-posts.html' rel='bookmark' title='Permanent Link: Simple Sticky Posts!'>Simple Sticky Posts!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can show comments on <strong>index.php</strong>. Some new themes support this. Also you can add this option to your themes.<span id="more-250"></span></p>
<h3 style="text-align: justify;">Here is the code;</h3>
<p style="text-align: justify;">First one you download your theme&#8217;s <span style="color: #ff0000;"><strong>index.php</strong></span>. After that open the file with your favourite text editor and paste this code wher you want to show your comments.</p>
<pre class="brush: plain;">&lt;?php
  global $withcomments;
  $withcomments = true;
  comments_template(&quot;/inline-comments.php&quot;);
?&gt;
</pre>
<p style="text-align: justify;"><span class="notice">What I did? That&#8217;s simple: On line 2, I declare that I&#8217;ll use the global variable $withcomments. I then set its value to true on line 3. Finally, I use the comments_template() function to call my comments file. The /inline-comments.php parameter tells the function to use a specific file for displaying comments, instead of the regular comments.php.</span></p>
<p>That&#8217;s All. Have a nice day!</p>
<p>The <a href="http://www.wprecipes.com/wordpress-tip-include-comments-in-post-lists">Original</a> Post!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;title=How%20to%20include%20comments%20in%20posts%20lists%3F&amp;notes=You%20can%20show%20comments%20on%20index.php.%20Some%20new%20themes%20support%20this.%20Also%20you%20can%20add%20this%20option%20to%20your%20themes.%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AFirst%20one%20you%20download%20your%20theme%27s%20index.php.%20After%20that%20open%20the%20file%20with%20your%20favourite%20text%20editor%20and%20paste%20thi'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;title=How%20to%20include%20comments%20in%20posts%20lists%3F&amp;bodytext=You%20can%20show%20comments%20on%20index.php.%20Some%20new%20themes%20support%20this.%20Also%20you%20can%20add%20this%20option%20to%20your%20themes.%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AFirst%20one%20you%20download%20your%20theme%27s%20index.php.%20After%20that%20open%20the%20file%20with%20your%20favourite%20text%20editor%20and%20paste%20thi'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;t=How%20to%20include%20comments%20in%20posts%20lists%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=How%20to%20include%20comments%20in%20posts%20lists%3F&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;title=How%20to%20include%20comments%20in%20posts%20lists%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;title=How%20to%20include%20comments%20in%20posts%20lists%3F'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fhow-to-include-comments-in-posts-lists.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/disable-comments-on-30-day-older-posts.html' rel='bookmark' title='Permanent Link: Disable Comments on 30-day older posts'>Disable Comments on 30-day older posts</a></li>
<li><a href='http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html' rel='bookmark' title='Permanent Link: Most Recent Comments! Without Any Plugin'>Most Recent Comments! Without Any Plugin</a></li>
<li><a href='http://www.wpfunc.com/wordpress/simple-sticky-posts.html' rel='bookmark' title='Permanent Link: Simple Sticky Posts!'>Simple Sticky Posts!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/how-to-include-comments-in-posts-lists.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Breadcumbs without a plugin!</title>
		<link>http://www.wpfunc.com/wordpress/add-breadcumbs-without-a-plugin.html</link>
		<comments>http://www.wpfunc.com/wordpress/add-breadcumbs-without-a-plugin.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:31:55 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[breadcumbs]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme develop]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=205</guid>
		<description><![CDATA[You can show  users and guest to where they are in your blog. You can do this with breadcumbs easily. There are some plugins for that but if you want to add breadcumbs your theme or if you a theme developer you can use this function. This code is very simple, pretty and good.
Firstly you have to create [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html' rel='bookmark' title='Permanent Link: Most Recent Comments! Without Any Plugin'>Most Recent Comments! Without Any Plugin</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-last-twitter-update-without-a-plugin.html' rel='bookmark' title='Permanent Link: Show Your Last Twitter Update Without a Plugin'>Show Your Last Twitter Update Without a Plugin</a></li>
<li><a href='http://www.wpfunc.com/wp-plugins/nice-search-plugin.html' rel='bookmark' title='Permanent Link: Nice Search Plugin!'>Nice Search Plugin!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can show  users and guest to where they are in your blog. You can do this with breadcumbs easily. There are some plugins for that but if you want to add breadcumbs your theme or if you a theme developer you can use this function. This code is very simple, pretty and good.<span id="more-205"></span></p>
<p style="text-align: justify;">Firstly you have to create a php file with named &#8220;<strong><span style="color: #ff0000;">breadcumbs.php</span></strong>&#8220;. After that paste this code below into the file:</p>
<pre class="brush: plain;">&lt;div class=&quot;breadcrumbs&quot;&gt;
&lt;?php
function breadcrumbs() {
    $theFullUrl = $_SERVER[&quot;REQUEST_URI&quot;];
    $urlArray=explode(&quot;/&quot;,$theFullUrl);
    echo 'You Are Here: &lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;';
    while (list($j,$text) = each($urlArray)) {
        $dir=&quot;;
        if ($j &gt; 1) {
            $i=1;
            while ($i &lt; $j) {
                $dir .= '/' . $urlArray[$i];
                $text = $urlArray[$i];
                $i  ;
            }
            if($j &lt; count($urlArray)-1) echo ' &amp;raquo; &lt;a href=&quot;'.$dir.'&quot;&gt;' . str_replace(&quot;-&quot;, &quot; &quot;, $text) . '&lt;/a&gt;';
        }
    }
    echo wp_title();
}
breadcrumbs();
?&gt;
&lt;/div&gt;&lt;!-/breadcrumbs-&gt;</pre>
<p style="text-align: justify;">Send this <strong><span style="color: #ff0000;">breadcumbs.php</span></strong> into your <strong>themes root path</strong>. After that you can use this code where you want in your theme:</p>
<pre class="brush: plain;">&lt;?php include ( TEMPLATEPATH . '/breadcrumbs.php'); ?&gt;</pre>
<p style="text-align: justify;">
You can use a class style named <strong>breadcumbs</strong> with this file and code. You can edit with your base styleshet.<br />
That&#8217;s All! Have a nice day.</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;title=Add%20Breadcumbs%20without%20a%20plugin%21&amp;notes=You%20can%20show%C2%A0%20users%20and%20guest%20to%20where%20they%20are%20in%20your%20blog.%20You%20can%20do%20this%20with%20breadcumbs%20easily.%20There%20are%20some%20plugins%20for%20that%20but%20if%20you%20want%20to%20add%20breadcumbs%C2%A0your%20theme%C2%A0or%20if%20you%20a%20theme%20developer%20you%20can%20use%20this%20function.%20This%20code%20is%20'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;title=Add%20Breadcumbs%20without%20a%20plugin%21&amp;bodytext=You%20can%20show%C2%A0%20users%20and%20guest%20to%20where%20they%20are%20in%20your%20blog.%20You%20can%20do%20this%20with%20breadcumbs%20easily.%20There%20are%20some%20plugins%20for%20that%20but%20if%20you%20want%20to%20add%20breadcumbs%C2%A0your%20theme%C2%A0or%20if%20you%20a%20theme%20developer%20you%20can%20use%20this%20function.%20This%20code%20is%20'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;t=Add%20Breadcumbs%20without%20a%20plugin%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Add%20Breadcumbs%20without%20a%20plugin%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;title=Add%20Breadcumbs%20without%20a%20plugin%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;title=Add%20Breadcumbs%20without%20a%20plugin%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fadd-breadcumbs-without-a-plugin.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/most-recent-comments-without-any-plugin.html' rel='bookmark' title='Permanent Link: Most Recent Comments! Without Any Plugin'>Most Recent Comments! Without Any Plugin</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-last-twitter-update-without-a-plugin.html' rel='bookmark' title='Permanent Link: Show Your Last Twitter Update Without a Plugin'>Show Your Last Twitter Update Without a Plugin</a></li>
<li><a href='http://www.wpfunc.com/wp-plugins/nice-search-plugin.html' rel='bookmark' title='Permanent Link: Nice Search Plugin!'>Nice Search Plugin!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/add-breadcumbs-without-a-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Your RSS Feed Link Auto Discoverable!</title>
		<link>http://www.wpfunc.com/wordpress/make-your-rss-feed-link-auto-discoverable.html</link>
		<comments>http://www.wpfunc.com/wordpress/make-your-rss-feed-link-auto-discoverable.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 00:27:47 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=191</guid>
		<description><![CDATA[Some Web Browsers ( for ex. IE,Firefox,Opera) can auto discover RSS Links which are optimized. So you can use this option for your website. And users can submit your RSS feeds easily. You have to change your theme&#8217;s header.php and paste this two codes to into the file.
Firstly you should make a backup of header.php [...]<hr /><div style="text-align:center;">
<a href="http://aweber.com/?339698" title="Email Marketing">
<img src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" style="border:none;" /></a>
</div><hr />


Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/add-comment-rss-link-to-every-post.html' rel='bookmark' title='Permanent Link: Add Comment RSS Link to Every Post'>Add Comment RSS Link to Every Post</a></li>
<li><a href='http://www.wpfunc.com/wordpress/do-you-want-to-add-your-ads-to-your-blog-feed.html' rel='bookmark' title='Permanent Link: Do you want to add your ads to your Blog Feed?'>Do you want to add your ads to your Blog Feed?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/make-tabs-for-your-sidebar.html' rel='bookmark' title='Permanent Link: Make Tabs for your Sidebar!'>Make Tabs for your Sidebar!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some Web Browsers ( for ex. IE,Firefox,Opera) can auto discover RSS Links which are optimized. So you can use this option for your website. And users can submit your RSS feeds easily. You have to change your theme&#8217;s header.php and paste this two codes to into the file.<span id="more-191"></span></p>
<p style="text-align: justify;">Firstly you should make a backup of header.php It is in your theme&#8217;s folder. After backup, you can change this file.</p>
<h3>Here is the code;</h3>
<pre class="brush: plain;">&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;&lt;?php bloginfo('name'); ?&gt; RSS Feed&quot; href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot; /&gt;
</pre>
<p> </p>
<pre class="brush: plain;">&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;&lt;?php bloginfo('name'); ?&gt; Comments RSS Feed&quot; href=&quot;&lt;?php bloginfo('comments_rss2_url'); ?&gt;&quot; /&gt;</pre>
<p style="text-align: justify;">You can paste this two code to header.php. If your theme have first code you can just use second code. After that save your header.php and send it to your server.</p>
<p style="text-align: justify;">If you use IE8 you can see RSS image turn to orange and if you use Firefox you can see adding a RSS button to your address bar. When you click to this button you can see there are 2 RSS feed link into it.</p>
<p style="text-align: justify;">That&#8217;s All. Have a nice day.</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;title=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21&amp;notes=Some%20Web%20Browsers%20%28%20for%20ex.%20IE%2CFirefox%2COpera%29%20can%20auto%20discover%20RSS%20Links%20which%20are%20optimized.%20So%20you%20can%20use%20this%20option%20for%20your%20website.%20And%20users%20can%20submit%20your%20RSS%20feeds%20easily.%20You%20have%20to%20change%20your%20theme%27s%20header.php%20and%20paste%20this%20two%20code'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;title=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21&amp;bodytext=Some%20Web%20Browsers%20%28%20for%20ex.%20IE%2CFirefox%2COpera%29%20can%20auto%20discover%20RSS%20Links%20which%20are%20optimized.%20So%20you%20can%20use%20this%20option%20for%20your%20website.%20And%20users%20can%20submit%20your%20RSS%20feeds%20easily.%20You%20have%20to%20change%20your%20theme%27s%20header.php%20and%20paste%20this%20two%20code'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;t=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;title=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;title=Make%20Your%20WpFunc%20Feed%20Link%20Auto%20Discoverable%21'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fmake-your-rss-feed-link-auto-discoverable.html&amp;partner=sociable'><img src='http://www.wpfunc.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><br/><br/>

<p>Related posts:<ol><li><a href='http://www.wpfunc.com/wordpress/add-comment-rss-link-to-every-post.html' rel='bookmark' title='Permanent Link: Add Comment RSS Link to Every Post'>Add Comment RSS Link to Every Post</a></li>
<li><a href='http://www.wpfunc.com/wordpress/do-you-want-to-add-your-ads-to-your-blog-feed.html' rel='bookmark' title='Permanent Link: Do you want to add your ads to your Blog Feed?'>Do you want to add your ads to your Blog Feed?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/make-tabs-for-your-sidebar.html' rel='bookmark' title='Permanent Link: Make Tabs for your Sidebar!'>Make Tabs for your Sidebar!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/make-your-rss-feed-link-auto-discoverable.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
