<?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, 18 Mar 2010 11:09:56 +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/18/how-can-i-create-a-wordpress-theme-without-installing-wordpress-on-my-computer/" title="How can I create a Wordpress Theme without installing Wordpress on my computer?">How can I create a Wordpress Theme without installing Wordpress on my computer?</a></li><li><a href="http://www.webtoolol.com/2010/03/17/how-do-you-start-building-a-wordpress-site-for-an-already-existing-website/" title="How do you start building a WordPress site for an already existing website?">How do you start building a WordPress site for an already existing website?</a></li><li><a href="http://www.webtoolol.com/2010/03/16/wordpress-tutorial/" title="Wordpress Tutorial">Wordpress Tutorial</a></li><li><a href="http://www.webtoolol.com/2010/03/15/can-i-install-a-different-wordpress-theme-to-a-wordpress-hosted-blog/" title="Can I install a different Wordpress theme to a Wordpress hosted blog?">Can I install a different Wordpress theme to a Wordpress hosted blog?</a></li><li><a href="http://www.webtoolol.com/2010/03/14/the-wordpress-plugin-repository/" title="The Wordpress Plugin Repository">The Wordpress Plugin Repository</a></li><li><a href="http://www.webtoolol.com/2010/03/13/installing-wordpress-on-your-webhost/" title="Installing wordpress on your Webhost">Installing wordpress on your Webhost</a></li><li><a href="http://www.webtoolol.com/2010/03/12/best-wordpress-plugins-every-wordpress-blogger-should-be-using-on-there-blogs/" title="Best Wordpress Plugins Every Wordpress Blogger Should Be Using On There Blogs">Best Wordpress Plugins Every Wordpress Blogger Should Be Using On There Blogs</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/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></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/2010/03/06/wordpress-training-package/" title="WordPress Training Package.">WordPress Training Package.</a></li><li><a href="http://www.webtoolol.com/2008/08/07/free-wordpress-theme-released-grey-blue/" title="Free WordPress Theme Released: Grey Blue">Free WordPress Theme Released: Grey Blue</a></li><li><a href="http://www.webtoolol.com/2008/05/29/zip-online/" title="zip-online: zip service online">zip-online: zip service online</a></li><li><a href="http://www.webtoolol.com/2009/08/20/wordpress-theme-wpol/" title="wordpress theme : wpol">wordpress theme : wpol</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/2008/05/30/google-ajax-libraries-api/" title="Google AJAX Libraries API opened">Google AJAX Libraries API opened</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/06/ubervu/" title="Ubervu: all your content and conversations in one place">Ubervu: all your content and conversations in one place</a></li><li><a href="http://www.webtoolol.com/2008/06/16/ping/" title="Ping: update from anywhere">Ping: update from anywhere</a></li><li><a href="http://www.webtoolol.com/2010/03/11/wordpress-com-step-by-step-tutorial-on-how-to-blog/" title="WordPress.com &#8211; Step-by-Step Tutorial on How to Blog">WordPress.com &#8211; Step-by-Step Tutorial on How to Blog</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/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/2008/05/25/bedesk/" title="Bedesk: a Social Desktop">Bedesk: a Social Desktop</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><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/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/2009/02/06/how-to-set-up-the-php-platform-for-test/" title="How to set up the PHP platform for test">How to set up the PHP platform for test</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/08/08/unfortunately-we-dont-yet-support-parentchild-themes-in-the-directory/" title="Unfortunately we don&#8217;t yet support parent/child themes in the directory">Unfortunately we don&#8217;t yet support parent/child themes in the directory</a></li><li><a href="http://www.webtoolol.com/2008/05/23/0fees-free-php-web-hosting/" title="0fees:provides free PHP web hosting">0fees:provides free PHP web hosting</a></li><li><a href="http://www.webtoolol.com/2010/03/11/wordpress-com-step-by-step-tutorial-on-how-to-blog/" title="WordPress.com &#8211; Step-by-Step Tutorial on How to Blog">WordPress.com &#8211; Step-by-Step Tutorial on How to Blog</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>
