<?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>WordPress Online &#187; WordPress Newbie</title>
	<atom:link href="http://www.webtoolol.com/category/wordpress-newbie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webtoolol.com</link>
	<description>free wordpress themes, free wordpress plugins, wordpress tips,cheap wordpress blog hosting</description>
	<lastBuildDate>Fri, 03 Sep 2010 11:07:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to add widget at foot</title>
		<link>http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/</link>
		<comments>http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/#comments</comments>
		<pubDate>Fri, 01 May 2009 02:03:23 +0000</pubDate>
		<dc:creator>WebtoolOL</dc:creator>
				<category><![CDATA[WordPress Newbie]]></category>
		<category><![CDATA[foot]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/</guid>
		<description><![CDATA[First , find the theme folder and open the file named functions.php

1
2
3
4
5
6
7
   if &#40; function_exists&#40;'register_sidebar'&#41; &#41;
        register_sidebar&#40;array&#40;
            'before_widget' =&#62; '&#60;li id=&#34;%1$s&#34; class=&#34;widget %2$s&#34;&#62;',
            'after_widget' [...]]]></description>
			<content:encoded><![CDATA[<p>First , find the theme folder and open the file named functions.php</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">   <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_sidebar'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
        register_sidebar<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'before_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;li id=&quot;%1$s&quot; class=&quot;widget %2$s&quot;&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'after_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/li&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'before_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;h2 class=&quot;widgettitle&quot;&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'after_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/h2&gt;'</span><span style="color: #339933;">,</span>
        <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>add the below code at this file&#8217;s bottom</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_sidebar'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
        register_sidebar<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'before_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;li id=&quot;%1$s&quot; class=&quot;widget %2$s&quot;&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'after_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/li&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'before_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;h2 class=&quot;widgettitle&quot;&gt;'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'after_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/h2&gt;'</span><span style="color: #339933;">,</span>
        <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    register_sidebar<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'name'</span> <span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'subwidget'</span><span style="color: #339933;">,</span>
   <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>then, add the below code at your foot.php</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;subwidget&quot;&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> dynamic_sidebar<span style="color: #009900;">&#40;</span>subwidget<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></td></tr></table></div>

<p>
OK now <img src='http://www.webtoolol.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
<p class="bookmark-me">
    <script type="text/javascript">
	    yahooBuzzArticleHeadline = "How to add widget at foot";
	    yahooBuzzArticleId = "http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/";
    </script>
    <script type="text/javascript"
        src="http://d.yimg.com/ds/badge2.js"
        badgetype="logo">
    </script>    
    <a title="technorati.com" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/technorati.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/delicious.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="stumbleupon.com" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/stumbleupon.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="digg.com" href="http://digg.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/digg.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.facebook.com" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;t=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/facebook.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="bookmarks.yahoo.com" href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/yahoo.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.google.com" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/google.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="fark.com" href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;new_comment=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/fark.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="furl.com" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;t=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/furl.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="linkarena.de" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/linkarena.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="folkd.com" href="http://www.folkd.com/submit/http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/folkd.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="mixx.com" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/mixx.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="reddit.com" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/reddit.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="twitthis.com" href="http://twitthis.com/twit?url=http%3A%2F%2Fwww.webtoolol.com%2F2009%2F04%2F30%2Fhow-to-add-widget-at-foot%2F&amp;title=How+to+add+widget+at+foot"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/twitter.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> </p><ul class="related_post"><li><a href="http://www.webtoolol.com/2010/09/03/how-can-i-add-a-plugin-to-my-wordpress-blog/" title="How can I add a plugin to my Wordpress blog?">How can I add a plugin to my Wordpress blog?</a></li><li><a href="http://www.webtoolol.com/2010/09/02/how-can-i-use-use-my-websites-custom-banner-and-navigation-bar-in-wordpress-if-i-have-wordpress-installed/" title="How can I use use my websites custom banner and navigation bar in wordpress if I have wordpress installed?">How can I use use my websites custom banner and navigation bar in wordpress if I have wordpress installed?</a></li><li><a href="http://www.webtoolol.com/2010/09/01/how-to-encourage-people-to-click-on-my-wordpress-entries/" title="How to encourage people to click on my Wordpress entries?">How to encourage people to click on my Wordpress entries?</a></li><li><a href="http://www.webtoolol.com/2010/08/31/wordpress-secrets/" title="WordPress Secrets">WordPress Secrets</a></li><li><a href="http://www.webtoolol.com/2010/08/28/how-do-i-convert-a-long-post-in-wordpress-to-several-subpages/" title="How do i convert a long post in wordpress to several subpages?">How do i convert a long post in wordpress to several subpages?</a></li><li><a href="http://www.webtoolol.com/2010/08/27/how-to-set-up-a-free-wordpress-blog-in-5-minutes/" title="How to Set Up a Free Wordpress Blog in 5 Minutes">How to Set Up a Free Wordpress Blog in 5 Minutes</a></li><li><a href="http://www.webtoolol.com/2010/08/25/strategies-to-get-more-traffic-with-wordpress/" title="Strategies to Get More Traffic With Wordpress">Strategies to Get More Traffic With Wordpress</a></li><li><a href="http://www.webtoolol.com/2010/08/24/affilitheme-powerful-wordpress-affiliate-theme-pays-70/" title="AffiliTheme &#8211; Powerful Wordpress Affiliate Theme &#8211; Pays 70">AffiliTheme &#8211; Powerful Wordpress Affiliate Theme &#8211; Pays 70</a></li><li><a href="http://www.webtoolol.com/2010/08/23/5-wordpress-plugins-you-must-use/" title="5 Wordpress Plugins You Must Use">5 Wordpress Plugins You Must Use</a></li><li><a href="http://www.webtoolol.com/2010/08/22/the-wordpress-blogging-system/" title="The WordPress Blogging System">The WordPress Blogging System</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Online: get a free wordpress hosting</title>
		<link>http://www.webtoolol.com/2008/09/08/free-wordpress-hosting/</link>
		<comments>http://www.webtoolol.com/2008/09/08/free-wordpress-hosting/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 16:23:40 +0000</pubDate>
		<dc:creator>WebtoolOL</dc:creator>
				<category><![CDATA[WordPress Newbie]]></category>
		<category><![CDATA[cheap wordpress blog hosting]]></category>
		<category><![CDATA[free wordpress hosting]]></category>

		<guid isPermaLink="false">http://www.webtoolol.com/2008/09/08/free-wordpress-hosting/</guid>
		<description><![CDATA[Many people asked me how to find a free wordperss hosting. That's accessiable reason to ask me thie question, in my opinion, if you guy want to install a WordPress blog, do not be the one like the money river running dry :-) just feel free to buy some cheap wordpress hosting, that's the right way if you really want to install a wordpress blog.]]></description>
			<content:encoded><![CDATA[<p>Many people asked me how to find a <u>free wordperss hosting</u>. That&#8217;s accessiable reason to ask me thie question, in my opinion, if you guy want to install a WordPress blog, do not be the one like the money river running dry <img src='http://www.webtoolol.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  just feel free to buy some <a href="http://www.webtoolol.com/cheap-wordpress-blog-hosting/">cheap wordpress hosting</a>, that&#8217;s the right way if you really want to <a href="http://www.webtoolol.com/2008/08/10/how-to-install-wordpress/">install a wordpress blog</a>.</p>
<p>Anyway, if you just&#160; want to test the WordPress or just want to&#160; enjoy the steps to install a WordPress blog. OK, I will find some free wordpress hosting for you guys <img src='http://www.webtoolol.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I will give a better wordpress blog free hosting, that is <a title="http://www.000webhost.com/free-php-hosting" href="http://www.000webhost.com/free-php-hosting">http://www.000webhost.com/free-php-hosting</a>.</p>
<p>I heard many people said it was good, but I did not used it at all, I always use some cheap wordpress blog hosting.I think there is no free wordpress hosting forever.</p>
<p>Well, just get a free wordpress hosting and enjoy WordPress.</p>
<p class="bookmark-me">
    <script type="text/javascript">
	    yahooBuzzArticleHeadline = "WordPress Online: get a free wordpress hosting";
	    yahooBuzzArticleId = "http://www.webtoolol.com/2008/09/08/free-wordpress-hosting/";
    </script>
    <script type="text/javascript"
        src="http://d.yimg.com/ds/badge2.js"
        badgetype="logo">
    </script>    
    <a title="technorati.com" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/technorati.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/delicious.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="stumbleupon.com" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/stumbleupon.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="digg.com" href="http://digg.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/digg.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.facebook.com" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;t=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/facebook.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="bookmarks.yahoo.com" href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/yahoo.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.google.com" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/google.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="fark.com" href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;new_comment=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/fark.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="furl.com" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;t=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/furl.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="linkarena.de" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/linkarena.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="folkd.com" href="http://www.folkd.com/submit/http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/folkd.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="mixx.com" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/mixx.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="reddit.com" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/reddit.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="twitthis.com" href="http://twitthis.com/twit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F09%2F08%2Ffree-wordpress-hosting%2F&amp;title=WordPress+Online%3A+get+a+free+wordpress+hosting"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/twitter.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> </p><h3  class="related_post_title">People Also Read:</h3><ul class="related_post"><li><a href="http://www.webtoolol.com/2009/04/30/how-to-add-widget-at-foot/" title="How to add widget at foot">How to add widget at foot</a></li><li><a href="http://www.webtoolol.com/2010/06/16/how-can-i-switch-the-right-and-left-column-of-a-wordpress-theme/" title="How can I switch the right and left column of a wordpress theme?">How can I switch the right and left column of a wordpress theme?</a></li><li><a href="http://www.webtoolol.com/2010/04/28/how-do-i-transfer-my-blogger-feed-readers-to-my-wordpress-blog/" title="How do I transfer my Blogger feed readers to my Wordpress blog?">How do I transfer my Blogger feed readers to my Wordpress blog?</a></li><li><a href="http://www.webtoolol.com/2010/04/05/wordpress-plugin-development/" title="WordPress Plugin Development">WordPress Plugin Development</a></li><li><a href="http://www.webtoolol.com/2010/08/19/wordpress-thesis-theme-introduction/" title="Wordpress Thesis Theme Introduction">Wordpress Thesis Theme Introduction</a></li><li><a href="http://www.webtoolol.com/2010/06/12/wordpress-entrepreneur-how-to-setup-customize-use-a-wordpress-website/" title="Wordpress Entrepreneur: How To Setup, Customize &amp; Use A Wordpress Website">Wordpress Entrepreneur: How To Setup, Customize &amp; Use A Wordpress Website</a></li><li><a href="http://www.webtoolol.com/2010/03/07/wordpress-for-dummies/" title="WordPress For Dummies">WordPress For Dummies</a></li><li><a href="http://www.webtoolol.com/2008/06/18/yourergo/" title="Yourergo: viewdata search engine">Yourergo: viewdata search engine</a></li><li><a href="http://www.webtoolol.com/2010/07/04/what-is-the-best-web-host-for-a-blog-with-wordpress-where-i-can-include-ads/" title="What is the best web host for a blog with wordpress where I can include ads?">What is the best web host for a blog with wordpress where I can include ads?</a></li><li><a href="http://www.webtoolol.com/2008/08/10/usa-china-basketball/" title="USA China Basketball">USA China Basketball</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.webtoolol.com/2008/09/08/free-wordpress-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install a plugin on WordPress</title>
		<link>http://www.webtoolol.com/2008/08/17/how-to-install-a-plugin-on-wordpress/</link>
		<comments>http://www.webtoolol.com/2008/08/17/how-to-install-a-plugin-on-wordpress/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:19:01 +0000</pubDate>
		<dc:creator>WebtoolOL</dc:creator>
				<category><![CDATA[WordPress Newbie]]></category>
		<category><![CDATA[install wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.webtoolol.com/2008/08/17/how-to-install-a-plugin-on-wordpress/</guid>
		<description><![CDATA[This post is for WordPress newbie. If you just started to use WordPress some days ago, and want to install a plugin on your WordPress, just follow this]]></description>
			<content:encoded><![CDATA[<p>This post is for <a href="http://www.webtoolol.com/">WordPress newbie</a>. If you just started to use WordPress some days ago, and want to install a plugin on your WordPress, just follow this <img src='http://www.webtoolol.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ol>
<li>Download the WordPress plugin, for example, the All in one SEO pack.</li>
<li>decompressing the plugin and upload to the directory&nbsp; wp-content/plugin</li>
<li>login to the admin board.</li>
<li>click the plugin button.</li>
<li>click the activate button.</li>
<li>your plugin activated now!</li>
</ol>
<p>Also, normally, the plugin contain a readme.txt, and you can open this file and follow this file, hope this will help for WordPress newbies <img src='http://www.webtoolol.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="bookmark-me">
    <script type="text/javascript">
	    yahooBuzzArticleHeadline = "How to install a plugin on WordPress";
	    yahooBuzzArticleId = "http://www.webtoolol.com/2008/08/17/how-to-install-a-plugin-on-wordpress/";
    </script>
    <script type="text/javascript"
        src="http://d.yimg.com/ds/badge2.js"
        badgetype="logo">
    </script>    
    <a title="technorati.com" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/technorati.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/delicious.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="stumbleupon.com" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/stumbleupon.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="digg.com" href="http://digg.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/digg.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.facebook.com" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;t=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/facebook.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="bookmarks.yahoo.com" href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/yahoo.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="www.google.com" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/google.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="fark.com" href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;new_comment=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/fark.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="furl.com" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;t=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/furl.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="linkarena.de" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/linkarena.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="folkd.com" href="http://www.folkd.com/submit/http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/folkd.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="mixx.com" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/mixx.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="reddit.com" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/reddit.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> <a title="twitthis.com" href="http://twitthis.com/twit?url=http%3A%2F%2Fwww.webtoolol.com%2F2008%2F08%2F17%2Fhow-to-install-a-plugin-on-wordpress%2F&amp;title=How+to+install+a+plugin+on+WordPress"><img src="http://www.webtoolol.com/wp-content/plugins/bookmark-me/images/twitter.png" style="margin:0;border:0;padding:0" alt="bookmark"/></a> </p><h3  class="related_post_title">People Also Read:</h3><ul class="related_post"><li><a href="http://www.webtoolol.com/2010/03/06/wordpress-training-package/" title="WordPress Training Package.">WordPress Training Package.</a></li><li><a href="http://www.webtoolol.com/2008/12/31/upgrade-to-wordpress-27/" title="Upgrade to WordPress 2.7">Upgrade to WordPress 2.7</a></li><li><a href="http://www.webtoolol.com/2008/07/22/wordpress-opened-the-theme-directory/" title="WordPress opened the theme directory">WordPress opened the theme directory</a></li><li><a href="http://www.webtoolol.com/2010/06/30/seo-for-wordpress-secrets-if-your-wordpress-blog-isnt-optimized-you-are-missing-out-on-a-huge-opportunity-aaa/" title="SEO For Wordpress Secrets: If Your WordPress Blog Isn&#8217;t Optimized, You are Missing Out on a HUGE Opportunity!  AAA+++">SEO For Wordpress Secrets: If Your WordPress Blog Isn&#8217;t Optimized, You are Missing Out on a HUGE Opportunity!  AAA+++</a></li><li><a href="http://www.webtoolol.com/2008/07/25/the-pr-update-these-days/" title="The PR update these days">The PR update these days</a></li><li><a href="http://www.webtoolol.com/2009/02/19/search-wordpress-plugins-directory-easily/" title="Search WordPress plugins directory easily">Search WordPress plugins directory easily</a></li><li><a href="http://www.webtoolol.com/2010/07/04/what-is-the-best-web-host-for-a-blog-with-wordpress-where-i-can-include-ads/" title="What is the best web host for a blog with wordpress where I can include ads?">What is the best web host for a blog with wordpress where I can include ads?</a></li><li><a href="http://www.webtoolol.com/2010/07/18/how-do-you-make-people-authors-on-wordpress/" title="How do you make people authors on wordpress?">How do you make people authors on wordpress?</a></li><li><a href="http://www.webtoolol.com/2010/05/13/wordpress-2/" title="WordPress 2">WordPress 2</a></li><li><a href="http://www.webtoolol.com/2010/08/27/how-to-set-up-a-free-wordpress-blog-in-5-minutes/" title="How to Set Up a Free Wordpress Blog in 5 Minutes">How to Set Up a Free Wordpress Blog in 5 Minutes</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.webtoolol.com/2008/08/17/how-to-install-a-plugin-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
