<?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>Thu, 11 Mar 2010 11:09:01 +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/03/10/wordpress/" title="wordpress??">wordpress??</a></li><li><a href="http://www.webtoolol.com/2010/03/09/wordpress-bible/" title="WordPress Bible">WordPress Bible</a></li><li><a href="http://www.webtoolol.com/2010/03/08/wordpress-for-internet-marketers/" title="WordPress For Internet Marketers.">WordPress For Internet Marketers.</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/2010/03/07/wordpress-membership-plugin/" title="Wordpress Membership Plugin.">Wordpress Membership Plugin.</a></li><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/2010/03/06/wordpress-dynamic-date-plugin/" title="WordPress Dynamic Date Plugin.">WordPress Dynamic Date Plugin.</a></li><li><a href="http://www.webtoolol.com/2009/06/05/how-do-you-meet-wordpress/" title="How do you meet WordPress">How do you meet WordPress</a></li><li><a href="http://www.webtoolol.com/2009/04/25/how-to-disable-the-post-revision/" title="How to disable the post revision">How to disable the post revision</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></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/06/07/6-steps-to-keep-your-wordpress-safer/" title="6 steps to keep your wordpress safer">6 steps to keep your wordpress safer</a></li><li><a href="http://www.webtoolol.com/2008/08/19/how-to-use-wp-affiliate-in-mysql-40/" title="How to use WP-Affiliate in Mysql 4.0">How to use WP-Affiliate in Mysql 4.0</a></li><li><a href="http://www.webtoolol.com/2008/09/18/5-most-popular-wordpress-ideas/" title="5 most popular WordPress ideas">5 most popular WordPress ideas</a></li><li><a href="http://www.webtoolol.com/2008/06/10/youtubeallow-author-sell-ad-on-video/" title="Youtube:allow author sell AD on video">Youtube:allow author sell AD on video</a></li><li><a href="http://www.webtoolol.com/2009/04/25/how-to-disable-the-post-revision/" title="How to disable the post revision">How to disable the post revision</a></li><li><a href="http://www.webtoolol.com/2010/03/09/wordpress-bible/" title="WordPress Bible">WordPress Bible</a></li><li><a href="http://www.webtoolol.com/2009/06/05/how-do-you-meet-wordpress/" title="How do you meet WordPress">How do you meet WordPress</a></li><li><a href="http://www.webtoolol.com/2008/05/28/scribblelive/" title="Scribblelive: new live-blogging mini blog">Scribblelive: new live-blogging mini blog</a></li><li><a href="http://www.webtoolol.com/2009/06/02/why-do-you-must-choose-wordpress/" title="Why do you must choose WordPress">Why do you must choose WordPress</a></li><li><a href="http://www.webtoolol.com/2008/06/16/laterthis/" title="LaterThis:save the link to read later">LaterThis:save the link to read later</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/2008/08/10/usa-china-basketball/" title="USA China Basketball">USA China Basketball</a></li><li><a href="http://www.webtoolol.com/2010/03/10/wordpress/" title="wordpress??">wordpress??</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/24/6-wordpress-plugins-you-must-need/" title="100% of 6 WordPress plugins you will need">100% of 6 WordPress plugins you will need</a></li><li><a href="http://www.webtoolol.com/2009/08/01/do-you-use-960gs-when-you-design-your-wordpress-theme/" title="Do you use 960GS when you design your wordpress theme">Do you use 960GS when you design your wordpress theme</a></li><li><a href="http://www.webtoolol.com/2009/03/07/most-5-popular-ideas-in-wordpress/" title="Most 5 popular ideas in WordPress">Most 5 popular ideas in WordPress</a></li><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/2008/09/04/wordpress-backup/" title="Use WordPress Back Up to bacuup your Database">Use WordPress Back Up to bacuup your Database</a></li><li><a href="http://www.webtoolol.com/2009/06/09/domain-change-is-released/" title="domain change is released">domain change is released</a></li><li><a href="http://www.webtoolol.com/2008/06/07/penzu/" title="Penzu: free private journal and diary">Penzu: free private journal and diary</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>
