<?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; code</title>
	<atom:link href="http://www.wpfunc.com/tag/code/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>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>Remove menus in Dashboard!</title>
		<link>http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html</link>
		<comments>http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.html#comments</comments>
		<pubDate>Sun, 07 Feb 2010 16:31:57 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[remove menu]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=393</guid>
		<description><![CDATA[You can remove WordPress Dashboard&#8217;s menus with easy code. Just install this code into your theme&#8217;s functions.php and use like this. You can use this code for your clients Dashoards. Lets Begin&#8230;
Here is the code;
function remove_menus () {
global $menu;
	$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'));
	end ($menu);
	while (prev($menu)){
		$value = explode(' [...]<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-dashboard-footer-texts.html' rel='bookmark' title='Permanent Link: How to change dashboard footer texts?'>How to change dashboard footer texts?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/did-you-see-platinum-seo-pack-has-a-new-menu.html' rel='bookmark' title='Permanent Link: Did you see? Platinum SEO Pack Has a new menu!'>Did you see? Platinum SEO Pack Has a new menu!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-usable-tags-in-your-comment-form.html' rel='bookmark' title='Permanent Link: Show your usable tags in your comment form!'>Show your usable tags in your comment form!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You can remove WordPress Dashboard&#8217;s menus with easy code. Just install this code into your theme&#8217;s functions.php and use like this. You can use this code for your clients Dashoards. Lets Begin&#8230;<span id="more-393"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php;">function remove_menus () {
global $menu;
	$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'));
	end ($menu);
	while (prev($menu)){
		$value = explode(' ',$menu[key($menu)][0]);
		if(in_array($value[0] != NULL?$value[0]:&quot;&quot; , $restricted)){unset($menu[key($menu)]);}
	}
}
add_action('admin_menu', 'remove_menus');
</pre>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-menus-in-dashboard.html&amp;title=Remove%20menus%20in%20Dashboard%21&amp;notes=You%20can%20remove%20WordPress%20Dashboard%27s%20menus%20with%20easy%20code.%20Just%20install%20this%20code%20into%20your%20theme%27s%20functions.php%20and%20use%20like%20this.%20You%20can%20use%20this%20code%20for%20your%20clients%20Dashoards.%20Lets%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dfunction%20remove_menus%20%28%29%20%7B'><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-menus-in-dashboard.html&amp;title=Remove%20menus%20in%20Dashboard%21&amp;bodytext=You%20can%20remove%20WordPress%20Dashboard%27s%20menus%20with%20easy%20code.%20Just%20install%20this%20code%20into%20your%20theme%27s%20functions.php%20and%20use%20like%20this.%20You%20can%20use%20this%20code%20for%20your%20clients%20Dashoards.%20Lets%20Begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0A%5Bphp%5Dfunction%20remove_menus%20%28%29%20%7B'><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-menus-in-dashboard.html&amp;t=Remove%20menus%20in%20Dashboard%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%20menus%20in%20Dashboard%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fremove-menus-in-dashboard.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-menus-in-dashboard.html&amp;title=Remove%20menus%20in%20Dashboard%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-menus-in-dashboard.html&amp;title=Remove%20menus%20in%20Dashboard%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-menus-in-dashboard.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-menus-in-dashboard.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-menus-in-dashboard.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-dashboard-footer-texts.html' rel='bookmark' title='Permanent Link: How to change dashboard footer texts?'>How to change dashboard footer texts?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/did-you-see-platinum-seo-pack-has-a-new-menu.html' rel='bookmark' title='Permanent Link: Did you see? Platinum SEO Pack Has a new menu!'>Did you see? Platinum SEO Pack Has a new menu!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-usable-tags-in-your-comment-form.html' rel='bookmark' title='Permanent Link: Show your usable tags in your comment form!'>Show your usable tags in your comment form!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/remove-menus-in-dashboard.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>Create Custom Date Butons!</title>
		<link>http://www.wpfunc.com/wordpress/create-custom-date-butons.html</link>
		<comments>http://www.wpfunc.com/wordpress/create-custom-date-butons.html#comments</comments>
		<pubDate>Sun, 03 Jan 2010 18:42:10 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[date button]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[month]]></category>
		<category><![CDATA[post date]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=355</guid>
		<description><![CDATA[Create your own date buttons. This is a simple div class and css style. Choose your background image and read this article. Let&#8217;s begin&#8230;
Here is the code;
Firstly create a div area for this. After that we sill make changes.
Code;
&#60;div class=”post-date”&#62;
&#60;div class=”month”&#62;&#60;?php the_time(’M') ?&#62;&#60;/div&#62;
&#60;div class=”day”&#62;&#60;?php the_time(’d') ?&#62;&#60;/div&#62;
&#60;/div&#62;

The Template Image

CSS Style;
.post-date{
float: left;
display: inline;
margin: 0 10px 0 0;
background: [...]<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/build-a-top-sliding-login-panel.html' rel='bookmark' title='Permanent Link: Build a Top Sliding Login Panel'>Build a Top Sliding Login Panel</a></li>
<li><a href='http://www.wpfunc.com/wordpress/add-an-expration-date-for-posts.html' rel='bookmark' title='Permanent Link: Add an expration date for posts!'>Add an expration date for posts!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Create your own date buttons. This is a simple div class and css style. Choose your background image and read this article. Let&#8217;s begin&#8230;<span id="more-355"></span></p>
<h3>Here is the code;</h3>
<p>Firstly create a div area for this. After that we sill make changes.</p>
<h3>Code;</h3>
<pre class="brush: xml;">&lt;div class=”post-date”&gt;
&lt;div class=”month”&gt;&lt;?php the_time(’M') ?&gt;&lt;/div&gt;
&lt;div class=”day”&gt;&lt;?php the_time(’d') ?&gt;&lt;/div&gt;
&lt;/div&gt;</pre>
<h3>
The Template Image</h3>
<p><a class="highslide img_8" href="http://www.wpfunc.com/wp-content/uploads/2010/01/date_button_template.gif" onclick="return hs.expand(this)"><img class="alignnone size-full wp-image-357" title="date_button_template" src="http://www.wpfunc.com/wp-content/uploads/2010/01/date_button_template.gif" alt="" width="60" height="68" /></a></p>
<h3>CSS Style;</h3>
<pre class="brush: css;">.post-date{
float: left;
display: inline;
margin: 0 10px 0 0;
background: url(images/date_button_template.gif) no-repeat;
}</pre>
<h3>Final :)</h3>
<p><a class="highslide img_9" href="http://www.wpfunc.com/wp-content/uploads/2010/01/datebutton.jpg" onclick="return hs.expand(this)"><img class="alignnone size-full wp-image-356" title="datebutton" src="http://www.wpfunc.com/wp-content/uploads/2010/01/datebutton.jpg" alt="" width="300" height="100" /></a><br />
Use this code and the oıther on your theme. Have a nice day!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fcreate-custom-date-butons.html&amp;title=Create%20Custom%20Date%20Butons%21&amp;notes=Create%20your%20own%20date%20buttons.%20This%20is%20a%20simple%20div%20class%20and%20css%20style.%20Choose%20your%20background%20image%20and%20read%20this%20article.%20Let%27s%20begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AFirstly%20create%20a%20div%20area%20for%20this.%20After%20that%20we%20sill%20make%20changes.%0D%0ACode%3B%0D%0A%5Bhtml%5D%26lt%3Bdi'><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%2Fcreate-custom-date-butons.html&amp;title=Create%20Custom%20Date%20Butons%21&amp;bodytext=Create%20your%20own%20date%20buttons.%20This%20is%20a%20simple%20div%20class%20and%20css%20style.%20Choose%20your%20background%20image%20and%20read%20this%20article.%20Let%27s%20begin...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AFirstly%20create%20a%20div%20area%20for%20this.%20After%20that%20we%20sill%20make%20changes.%0D%0ACode%3B%0D%0A%5Bhtml%5D%26lt%3Bdi'><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%2Fcreate-custom-date-butons.html&amp;t=Create%20Custom%20Date%20Butons%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=Create%20Custom%20Date%20Butons%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fcreate-custom-date-butons.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%2Fcreate-custom-date-butons.html&amp;title=Create%20Custom%20Date%20Butons%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%2Fcreate-custom-date-butons.html&amp;title=Create%20Custom%20Date%20Butons%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%2Fcreate-custom-date-butons.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%2Fcreate-custom-date-butons.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%2Fcreate-custom-date-butons.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/build-a-top-sliding-login-panel.html' rel='bookmark' title='Permanent Link: Build a Top Sliding Login Panel'>Build a Top Sliding Login Panel</a></li>
<li><a href='http://www.wpfunc.com/wordpress/add-an-expration-date-for-posts.html' rel='bookmark' title='Permanent Link: Add an expration date for posts!'>Add an expration date for posts!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/create-custom-date-butons.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build a Top Sliding Login Panel</title>
		<link>http://www.wpfunc.com/wordpress/build-a-top-sliding-login-panel.html</link>
		<comments>http://www.wpfunc.com/wordpress/build-a-top-sliding-login-panel.html#comments</comments>
		<pubDate>Sat, 21 Nov 2009 16:51:48 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[login panel]]></category>
		<category><![CDATA[style.css]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=303</guid>
		<description><![CDATA[This trick comes from Blog-Oh-Blog. You can create a login panel with simple jQuery and Html. We will edit header.php and style.css. Let&#8217;s begin&#8230;
Firstly, make a backup of header.php and style.css. After that you can add this codes.
In header.php;
Before &#60;/head&#62; tag;
Add this javascript code to your header.php before &#60;/head&#62; tag.
&#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34;&#62;
$(document).ready(function(){
$(&#34;.btn-slide&#34;).click(function(){
$(&#34;#slide-panel&#34;).slideToggle(&#34;slow&#34;);
});
});
&#60;/script&#62;
After &#60;body&#62; tag;
Add [...]<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/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/how-to-make-a-magazin-style-wordpress-dropdown-menu.html' rel='bookmark' title='Permanent Link: How to make a magazin style wordpress dropdown menu?'>How to make a magazin style wordpress dropdown menu?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/buble-tooltips.html' rel='bookmark' title='Permanent Link: Buble Tooltips!'>Buble Tooltips!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This trick comes from Blog-Oh-Blog. You can create a login panel with simple jQuery and Html. We will edit header.php and style.css. Let&#8217;s begin&#8230;<span id="more-303"></span></p>
<p style="text-align: justify;">Firstly, make a backup of header.php and style.css. After that you can add this codes.</p>
<h2>In header.php;</h2>
<h3>Before &lt;/head&gt; tag;</h3>
<p style="text-align: justify;">Add this javascript code to your header.php before<strong><span style="color: #ff9900;"> &lt;/head&gt;</span></strong> tag.</p>
<pre class="brush: jscript;">&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){
$(&quot;.btn-slide&quot;).click(function(){
$(&quot;#slide-panel&quot;).slideToggle(&quot;slow&quot;);
});
});
&lt;/script&gt;</pre>
<h3>After &lt;body&gt; tag;</h3>
<p style="text-align: justify;">Add this HTML code after <strong><span style="color: #993366;">&lt;body&gt;</span></strong> tag where you want.</p>
<pre class="brush: xml;">&lt;div id=&quot;slide-panel&quot;&gt;&lt;!--SLIDE PANEL STARTS--&gt;
&lt;?php if ( ! is_user_logged_in() ){ ?&gt;
&lt;h2&gt;Login&lt;/h2&gt;
&lt;div class=&quot;loginform&quot;&gt;
&lt;div class=&quot;formdetails&quot;&gt;
&lt;form action=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-login.php&quot; method=&quot;post&quot;&gt;
&lt;label for=&quot;log&quot;&gt;Username : &lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;log&quot; id=&quot;log&quot; value=&quot;&lt;?php echo wp_specialchars(stripslashes($user_login), 1) ?&gt;&quot; size=&quot;20&quot; /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;label for=&quot;pwd&quot;&gt;Password : &lt;/label&gt;&lt;input type=&quot;password&quot; name=&quot;pwd&quot; id=&quot;pwd&quot; size=&quot;20&quot; /&gt;
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Login&quot; class=&quot;button&quot; /&gt;
&lt;label for=&quot;rememberme&quot;&gt;&lt;input name=&quot;rememberme&quot; id=&quot;rememberme&quot; type=&quot;checkbox&quot; checked=&quot;checked&quot; value=&quot;forever&quot; /&gt; Remember me&lt;/label&gt;&lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo $_SERVER['REQUEST_URI']; ?&gt;&quot; /&gt;
&lt;/form&gt;
&lt;/div&gt;
&lt;div class=&quot;loginregister&quot;&gt;
&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-register.php&quot;&gt;Register&lt;/a&gt; |
&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-login.php?action=lostpassword&quot;&gt;Recover password&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!--loginform ends--&gt;
&lt;?php } else { ?&gt;
&lt;div class=&quot;loginform&quot;&gt;
&lt;h2&gt;Control Panel&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-admin/&quot;&gt;Dashboard&lt;/a&gt;&lt;/li&gt; |
&lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-admin/post-new.php&quot;&gt;Write new Post&lt;/a&gt;&lt;/li&gt; |
&lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/wp-admin/page-new.php&quot;&gt;Write new Page&lt;/a&gt;&lt;/li&gt; |
&lt;li&gt;&lt;a href=&quot;&lt;?php echo wp_logout_url( get_bloginfo('url') ); ?&gt;&quot; title=&quot;Logout&quot;&gt;Logout&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;!--loginform ends--&gt;
&lt;?php }?&gt;
&lt;/div&gt;&lt;!--SLIDE PANEL ENDS--&gt;
&lt;div class=&quot;slide&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;btn-slide&quot;&gt;&lt;?php if ( ! is_user_logged_in() ){ ?&gt;Login&lt;?php } else { ?&gt;Logout&lt;?php }?&gt;&lt;/a&gt;&lt;/div&gt;&lt;!--LOGIN BUTTON TEXT--&gt;</pre>
<p style="text-align: justify;">Save and send your <strong><span style="color: #ff0000;">header.php</span></strong> to your server.</p>
<h3>And Style&#8230;</h3>
<p style="text-align: justify;">Open your <span style="color: #ff0000;"><strong>style.css</strong></span> and add this lines to end of file.</p>
<pre class="brush: css;">* {margin:0; padding:0; outline:0;}
#slide-panel{ background-color:#000;border-bottom-style:solid;border-bottom-width:2px;display:none;height:100px;margin:auto;}
.slide {width:950px; margin:auto;}
.btn-slide:link, .btn-slide:visited{color:#fff; float:right; display:block;font-size:14px; text-transform:uppercase; font-weight:bold;height:26px; padding:3px 0 3px 0;line-height:22px;text-align:center;text-decoration:none;width:100px; background-color:#000; font-family:Arial;}
.loginform {width:950px; margin:auto; color:#999; font-family:Arial, Helvetica, sans-serif;}
.formdetails {color:#FFF; font-size:12px;padding:5px;}
.formdetails input{border:none; padding:2px 5px 2px 5px; background-color:#EFEFEF;}
.loginregister {color:#999; padding:5px;}
.loginregister a:link, .loginregister a:visited {color:#FFF; font-size:11px; text-decoration:underline;}
.loginform h2 {padding:10px 10px 10px 0; font-size:18px; font-weight:normal; text-transform:uppercase;}
.loginform ul li {display:inline;}
.loginform ul li a:link, .loginform ul li a:visited {color:#FFF; font-size:12px; text-decoration:underline;}</pre>
<p>That&#8217;s All. Look at <strong><a href="http://www.blogohblog.com/labs/sliding_login_panel.html" target="_blank">DEMO!</a></strong> and the<strong> <a href="http://www.blogohblog.com/how-to-build-a-top-sliding-login-panel/" target="_blank">original post!</a></strong></p>
<p>Have a nice day!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fbuild-a-top-sliding-login-panel.html&amp;title=Build%20a%20Top%20Sliding%20Login%20Panel&amp;notes=This%20trick%20comes%20from%20Blog-Oh-Blog.%20You%20can%20create%20a%20login%20panel%20with%20simple%20jQuery%20and%20Html.%20We%20will%20edit%20header.php%20and%20style.css.%20Let%27s%20begin...%0D%0AFirstly%2C%20make%20a%20backup%20of%20header.php%20and%20style.css.%20After%20that%20you%20can%20add%20this%20codes.%0D%0A%0D%0AIn%20header.p'><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%2Fbuild-a-top-sliding-login-panel.html&amp;title=Build%20a%20Top%20Sliding%20Login%20Panel&amp;bodytext=This%20trick%20comes%20from%20Blog-Oh-Blog.%20You%20can%20create%20a%20login%20panel%20with%20simple%20jQuery%20and%20Html.%20We%20will%20edit%20header.php%20and%20style.css.%20Let%27s%20begin...%0D%0AFirstly%2C%20make%20a%20backup%20of%20header.php%20and%20style.css.%20After%20that%20you%20can%20add%20this%20codes.%0D%0A%0D%0AIn%20header.p'><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%2Fbuild-a-top-sliding-login-panel.html&amp;t=Build%20a%20Top%20Sliding%20Login%20Panel'><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=Build%20a%20Top%20Sliding%20Login%20Panel&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fbuild-a-top-sliding-login-panel.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%2Fbuild-a-top-sliding-login-panel.html&amp;title=Build%20a%20Top%20Sliding%20Login%20Panel'><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%2Fbuild-a-top-sliding-login-panel.html&amp;title=Build%20a%20Top%20Sliding%20Login%20Panel'><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%2Fbuild-a-top-sliding-login-panel.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%2Fbuild-a-top-sliding-login-panel.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%2Fbuild-a-top-sliding-login-panel.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/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/how-to-make-a-magazin-style-wordpress-dropdown-menu.html' rel='bookmark' title='Permanent Link: How to make a magazin style wordpress dropdown menu?'>How to make a magazin style wordpress dropdown menu?</a></li>
<li><a href='http://www.wpfunc.com/wordpress/buble-tooltips.html' rel='bookmark' title='Permanent Link: Buble Tooltips!'>Buble Tooltips!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/build-a-top-sliding-login-panel.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Automatically Insert Author&#8217;s Bio on each post</title>
		<link>http://www.wpfunc.com/wordpress/automatically-insert-authors-bio-on-each-post.html</link>
		<comments>http://www.wpfunc.com/wordpress/automatically-insert-authors-bio-on-each-post.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:24:42 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[bio]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functions.php]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=272</guid>
		<description><![CDATA[This recipe from WpRecipes. JBJ found cool tricks and hacks for WordPress. I am working for a long time. Because od that i can&#8217;t wtire article(s) last week. But i will add this recipe with a pingback :) Lets Begin.
If you want to add author&#8217;s bio on each post you can use your theme&#8217;s functions.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/how-to-add-author-name-to-author-archive.html' rel='bookmark' title='Permanent Link: How to Add Author Name to Author Archive'>How to Add Author Name to Author Archive</a></li>
<li><a href='http://www.wpfunc.com/wordpress/insert-a-text-to-text-editor-automatically.html' rel='bookmark' title='Permanent Link: Insert a text to text editor automatically!'>Insert a text to text editor automatically!</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;">This recipe from WpRecipes. JBJ found cool tricks and hacks for WordPress. I am working for a long time. Because od that i can&#8217;t wtire article(s) last week. But i will add this recipe with a pingback :) Lets Begin.<span id="more-272"></span></p>
<p style="text-align: justify;">If you want to add author&#8217;s bio on each post you can use your theme&#8217;s functions.php. Simply copy/paste this code and change values for your choices. That&#8217;s All.</p>
<pre class="brush: php; auto-links: false;">function get_author_bio ($content=''){
    global $post;

    $post_author_name=get_the_author_meta(&quot;display_name&quot;);
    $post_author_description=get_the_author_meta(&quot;description&quot;);
    $html=&quot;&lt;div class='clearfix' id='about_author'&gt;\n&quot;;
    $html.=&quot;&lt;img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=&quot;.md5(get_the_author_email()). &quot;&amp;default=&quot;.urlencode($GLOBALS['defaultgravatar']).&quot;&amp;size=80&amp;r=PG' alt='PG'/&gt;\n&quot;;
    $html.=&quot;&lt;div class='author_text'&gt;\n&quot;;
    $html.=&quot;&lt;h4&gt;Author: &lt;span&gt;&quot;.$post_author_name.&quot;&lt;/span&gt;&lt;/h4&gt;\n&quot;;
    $html.= $post_author_description.&quot;\n&quot;;
    $html.=&quot;&lt;/div&gt;\n&quot;;
    $html.=&quot;&lt;div class='clear'&gt;&lt;/div&gt;\n&quot;;
    $content .= $html;
    }

    return $content;
}

add_filter('the_content', 'get_author_bio');
</pre>
<p>Have a nice day!</p>
<a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fautomatically-insert-authors-bio-on-each-post.html&amp;title=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post&amp;notes=This%20recipe%20from%20WpRecipes.%20JBJ%20found%20cool%20tricks%20and%20hacks%20for%20WordPress.%20I%20am%20working%20for%20a%20long%20time.%20Because%20od%20that%20i%20can%27t%20wtire%20article%28s%29%20last%20week.%20But%20i%20will%20add%20this%20recipe%20with%20a%20pingback%20%3A%29%20Lets%20Begin.%0D%0AIf%20you%20want%20to%20add%20author%27s%20bio%20on'><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%2Fautomatically-insert-authors-bio-on-each-post.html&amp;title=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post&amp;bodytext=This%20recipe%20from%20WpRecipes.%20JBJ%20found%20cool%20tricks%20and%20hacks%20for%20WordPress.%20I%20am%20working%20for%20a%20long%20time.%20Because%20od%20that%20i%20can%27t%20wtire%20article%28s%29%20last%20week.%20But%20i%20will%20add%20this%20recipe%20with%20a%20pingback%20%3A%29%20Lets%20Begin.%0D%0AIf%20you%20want%20to%20add%20author%27s%20bio%20on'><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%2Fautomatically-insert-authors-bio-on-each-post.html&amp;t=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post'><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=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fautomatically-insert-authors-bio-on-each-post.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%2Fautomatically-insert-authors-bio-on-each-post.html&amp;title=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post'><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%2Fautomatically-insert-authors-bio-on-each-post.html&amp;title=Automatically%20Insert%20Author%27s%20Bio%20on%20each%20post'><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%2Fautomatically-insert-authors-bio-on-each-post.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%2Fautomatically-insert-authors-bio-on-each-post.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%2Fautomatically-insert-authors-bio-on-each-post.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-author-name-to-author-archive.html' rel='bookmark' title='Permanent Link: How to Add Author Name to Author Archive'>How to Add Author Name to Author Archive</a></li>
<li><a href='http://www.wpfunc.com/wordpress/insert-a-text-to-text-editor-automatically.html' rel='bookmark' title='Permanent Link: Insert a text to text editor automatically!'>Insert a text to text editor automatically!</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/automatically-insert-authors-bio-on-each-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show word counts on your posts!</title>
		<link>http://www.wpfunc.com/wordpress/show-word-counts-on-your-posts.html</link>
		<comments>http://www.wpfunc.com/wordpress/show-word-counts-on-your-posts.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 19:39:14 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[single.php]]></category>
		<category><![CDATA[word count]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=247</guid>
		<description><![CDATA[I konw there are some plugin about that but you can do that with a simple code. No need plugins. If you want to add some attractive code to show  word count on your posts only edit two file and use a short-code&#8230;
Here is the code;
We will change your theme&#8217;s functions.php and single.php, because of [...]<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/general/related-posts-without-any-plugin.html' rel='bookmark' title='Permanent Link: Related Posts, Without any Plugin!'>Related Posts, Without any Plugin!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-categories-in-two-columns.html' rel='bookmark' title='Permanent Link: Show your categories in two Columns!'>Show your categories in two Columns!</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I konw there are some plugin about that but you can do that with a simple code. No need plugins. If you want to add some attractive code to show  word count on your posts only edit two file and use a short-code&#8230;<span id="more-247"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;"><strong>We will change your theme&#8217;s functions.php and single.php, because of this wou need to make the backup this files</strong>. First the code of  <strong><span style="color: #ff0000;">functions.php</span></strong>;</p>
<pre class="brush: plain;">function count_words($str){
     $words = 0;
     $str = eregi_replace(&quot; +&quot;, &quot; &quot;, $str);
     $array = explode(&quot; &quot;, $str);
     for($i=0;$i &lt; count($array);$i++)
 	 {
         if (eregi(&quot;[0-9A-Za-zÀ-ÖØ-öø-ÿ]&quot;, $array[$i]))
             $words++;
     }
     return $words;
 }
</pre>
<p style="text-align: justify;">Here is the code of <strong><span style="color: #ff0000;">sinlge.php</span></strong>;</p>
<pre class="brush: plain;">Word count: &lt;?php echo count_words($post-&gt;post_content); ?&gt;</pre>
<p style="text-align: justify;">After you placed this code to single.php the code count your words.<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%2Fshow-word-counts-on-your-posts.html&amp;title=Show%20word%20counts%20on%20your%20posts%21&amp;notes=I%20konw%20there%20are%20some%20plugin%20about%20that%20but%20you%20can%20do%20that%20with%20a%20simple%20code.%20No%20need%20plugins.%20If%20you%20want%20to%20add%20some%20attractive%20code%20to%20show%20%C2%A0word%20count%20on%20your%20posts%20only%20edit%20two%20file%20and%20use%20a%20short-code...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AWe%20will%20chang'><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-word-counts-on-your-posts.html&amp;title=Show%20word%20counts%20on%20your%20posts%21&amp;bodytext=I%20konw%20there%20are%20some%20plugin%20about%20that%20but%20you%20can%20do%20that%20with%20a%20simple%20code.%20No%20need%20plugins.%20If%20you%20want%20to%20add%20some%20attractive%20code%20to%20show%20%C2%A0word%20count%20on%20your%20posts%20only%20edit%20two%20file%20and%20use%20a%20short-code...%0D%0A%0D%0AHere%20is%20the%20code%3B%0D%0AWe%20will%20chang'><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-word-counts-on-your-posts.html&amp;t=Show%20word%20counts%20on%20your%20posts%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%20word%20counts%20on%20your%20posts%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-word-counts-on-your-posts.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-word-counts-on-your-posts.html&amp;title=Show%20word%20counts%20on%20your%20posts%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-word-counts-on-your-posts.html&amp;title=Show%20word%20counts%20on%20your%20posts%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-word-counts-on-your-posts.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-word-counts-on-your-posts.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-word-counts-on-your-posts.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/general/related-posts-without-any-plugin.html' rel='bookmark' title='Permanent Link: Related Posts, Without any Plugin!'>Related Posts, Without any Plugin!</a></li>
<li><a href='http://www.wpfunc.com/wordpress/show-your-categories-in-two-columns.html' rel='bookmark' title='Permanent Link: Show your categories in two Columns!'>Show your categories in two Columns!</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/show-word-counts-on-your-posts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show your usable tags in your comment form!</title>
		<link>http://www.wpfunc.com/wordpress/show-your-usable-tags-in-your-comment-form.html</link>
		<comments>http://www.wpfunc.com/wordpress/show-your-usable-tags-in-your-comment-form.html#comments</comments>
		<pubDate>Sun, 27 Sep 2009 19:17:40 +0000</pubDate>
		<dc:creator>KaiseRCrazY</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[comment form]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[comments.php]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[XHTML tags]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=224</guid>
		<description><![CDATA[If you look my comment form you can see usable XHTML tags. If you want to show your usable tags to commentators or users, you can add this one-line code in to your comment form. Just need to change your theme&#8217;s comments.php. After that the users can use this tags.
Here is the code;
We will 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/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/contact-form-7-changes-plugin-admin-path.html' rel='bookmark' title='Permanent Link: Contact Form 7 Changes Plugin Admin Path!'>Contact Form 7 Changes Plugin Admin Path!</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If you look my comment form you can see usable <strong>XHTML</strong> tags. If you want to show your usable tags to commentators or users, you can add this one-line code in to your comment form. Just need to change your theme&#8217;s <strong>comments.php</strong>. After that the users can use this tags.<span id="more-224"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;">We will change our theme&#8217;s <span style="color: #ff0000;"><strong>comments.php</strong></span>. First make a <strong><span style="text-decoration: underline;">backup</span></strong> please. After bakcup you can add this code into your php file where you want to show this usable tags.</p>
<pre class="brush: plain;">Usable XHTML Tags: &lt;?php echo allowed_tags(); ?&gt;</pre>
<p>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-your-usable-tags-in-your-comment-form.html&amp;title=Show%20your%20usable%20tags%20in%20your%20comment%20form%21&amp;notes=If%20you%20look%20my%20comment%20form%20you%20can%20see%20usable%20XHTML%20tags.%20If%20you%20want%20to%20show%20your%20usable%20tags%20to%20commentators%20or%20users%2C%20you%20can%20add%20this%20one-line%20code%20in%20to%20your%20comment%20form.%20Just%20need%20to%20change%20your%20theme%27s%20comments.php.%20After%20that%20the%20users%20can%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%2Fshow-your-usable-tags-in-your-comment-form.html&amp;title=Show%20your%20usable%20tags%20in%20your%20comment%20form%21&amp;bodytext=If%20you%20look%20my%20comment%20form%20you%20can%20see%20usable%20XHTML%20tags.%20If%20you%20want%20to%20show%20your%20usable%20tags%20to%20commentators%20or%20users%2C%20you%20can%20add%20this%20one-line%20code%20in%20to%20your%20comment%20form.%20Just%20need%20to%20change%20your%20theme%27s%20comments.php.%20After%20that%20the%20users%20can%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%2Fshow-your-usable-tags-in-your-comment-form.html&amp;t=Show%20your%20usable%20tags%20in%20your%20comment%20form%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%20your%20usable%20tags%20in%20your%20comment%20form%21&amp;link=http%3A%2F%2Fwww.wpfunc.com%2Fwordpress%2Fshow-your-usable-tags-in-your-comment-form.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-your-usable-tags-in-your-comment-form.html&amp;title=Show%20your%20usable%20tags%20in%20your%20comment%20form%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-your-usable-tags-in-your-comment-form.html&amp;title=Show%20your%20usable%20tags%20in%20your%20comment%20form%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-your-usable-tags-in-your-comment-form.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-your-usable-tags-in-your-comment-form.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-your-usable-tags-in-your-comment-form.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/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/contact-form-7-changes-plugin-admin-path.html' rel='bookmark' title='Permanent Link: Contact Form 7 Changes Plugin Admin Path!'>Contact Form 7 Changes Plugin Admin Path!</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wpfunc.com/wordpress/show-your-usable-tags-in-your-comment-form.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>
	</channel>
</rss>
