<?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>Mon, 06 Feb 2012 11:07:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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' =&#62; '&#60;/li&#62;', 'before_title' =&#62; '&#60;h2 class=&#34;widgettitle&#34;&#62;', 'after_title' =&#62; '&#60;/h2&#62;', &#41;&#41;; add the below code at this file&#8217;s bottom 1 2 3 4 5 6 [...]]]></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/2011/03/17/id-like-to-post-my-facebook-status-updates-via-a-wordpress-sidebar-widget-how-do-i-do-it/" title="I&#8217;d like to post my Facebook status updates via a WordPress sidebar widget. How do I do it?">I&#8217;d like to post my Facebook status updates via a WordPress sidebar widget. How do I do it?</a></li><li><a href="http://www.webtoolol.com/2011/03/12/custom-dashboard-widget-wordpress/" title="Custom Dashboard Widget &#8211; Wordpress">Custom Dashboard Widget &#8211; Wordpress</a></li><li><a href="http://www.webtoolol.com/2010/11/29/wordpress-tutorial-use-text-widget-to-customize-sidebar-2/" title="WordPress Tutorial &#8211; Use Text Widget to Customize Sidebar 2">WordPress Tutorial &#8211; Use Text Widget to Customize Sidebar 2</a></li><li><a href="http://www.webtoolol.com/2012/01/31/tutorial-setting-up-your-wordpress-the-right-way/" title="Tutorial: Setting Up Your Wordpress (The Right Way)">Tutorial: Setting Up Your Wordpress (The Right Way)</a></li><li><a href="http://www.webtoolol.com/2012/01/29/masfacilwp-plantilla-para-wordpress-100-en-espanol/" title="Masfacilwp, Plantilla Para Wordpress 100% En Espanol">Masfacilwp, Plantilla Para Wordpress 100% En Espanol</a></li><li><a href="http://www.webtoolol.com/2012/01/25/create-fanpages-in-wordpress-with-a-single-click-using-this-plugin/" title="Create Fanpages In Wordpress With A Single Click Using This Plugin">Create Fanpages In Wordpress With A Single Click Using This Plugin</a></li><li><a href="http://www.webtoolol.com/2012/01/23/sterlings-wp-amazon-monetizer-professional-wordpress-plugin/" title="Sterling&#8217;s Wp-amazon Monetizer Professional -wordpress Plugin">Sterling&#8217;s Wp-amazon Monetizer Professional -wordpress Plugin</a></li><li><a href="http://www.webtoolol.com/2012/01/12/100-wordpress-themes-with-private-label-rights/" title="100 Wordpress Themes With Private Label Rights">100 Wordpress Themes With Private Label Rights</a></li><li><a href="http://www.webtoolol.com/2012/01/10/conversion-phoenix-wordpress-plugin-training-package/" title="Conversion Phoenix &#8211; Wordpress Plugin &amp; Training Package">Conversion Phoenix &#8211; Wordpress Plugin &amp; Training Package</a></li><li><a href="http://www.webtoolol.com/2012/01/08/sharethisplugin-viral-facebook-plugin-for-wordpress/" title="Sharethisplugin &#8211; Viral Facebook Plugin For Wordpress">Sharethisplugin &#8211; Viral Facebook Plugin For Wordpress</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/2011/07/24/wordpress-plugins-guidediscover-how-to-major-power-up-your-blog-with-wordpress-plugins-from-stats-marketing-and-business-to-video-audio-and-beyond/" title="Wordpress Plugins Guide,Discover how to major power up your Blog with Wordpress Plugins from stats, marketing and business to video, audio and beyond">Wordpress Plugins Guide,Discover how to major power up your Blog with Wordpress Plugins from stats, marketing and business to video, audio and beyond</a></li><li><a href="http://www.webtoolol.com/2011/07/14/professional-wordpress-design-development/" title="Professional WordPress Design &amp; Development">Professional WordPress Design &amp; Development</a></li><li><a href="http://www.webtoolol.com/2011/03/09/how-do-i-make-my-wordpress-blog-have-an-rss-feed/" title="How do I make my Wordpress blog have an RSS feed?">How do I make my Wordpress blog have an RSS feed?</a></li><li><a href="http://www.webtoolol.com/2010/10/19/psd-to-wordpress-theme/" title="PSD to Wordpress theme">PSD to Wordpress theme</a></li><li><a href="http://www.webtoolol.com/2011/01/04/freies-web-content-management-system-php-nuke-mambo-postnuke-typo3-joomla-wordpress-website-baker-drupal-ez-publish-eyeos-contao/" title="Freies Web-Content-Management-System: PHP-Nuke, Mambo, PostNuke, TYPO3, Joomla, WordPress, Website Baker, Drupal, EZ Publish, Eyeos, Contao">Freies Web-Content-Management-System: PHP-Nuke, Mambo, PostNuke, TYPO3, Joomla, WordPress, Website Baker, Drupal, EZ Publish, Eyeos, Contao</a></li><li><a href="http://www.webtoolol.com/2012/01/10/conversion-phoenix-wordpress-plugin-training-package/" title="Conversion Phoenix &#8211; Wordpress Plugin &amp; Training Package">Conversion Phoenix &#8211; Wordpress Plugin &amp; Training Package</a></li><li><a href="http://www.webtoolol.com/2008/09/14/the-most-5-popular-wordpress-plugins/" title="The most 5 popular wordpress plugins">The most 5 popular wordpress plugins</a></li><li><a href="http://www.webtoolol.com/2011/02/11/building-the-perfect-wordpress-blog-getting-started-with-wordpress-a/" title="Building The Perfect Wordpress Blog &#8211; Getting Started with WordPress! A+">Building The Perfect Wordpress Blog &#8211; Getting Started with WordPress! A+</a></li><li><a href="http://www.webtoolol.com/2011/01/10/is-there-any-issues-with-regards-to-importing-an-old-wordpress-mysql-database-to-a-new-one/" title="Is there any issues with regards to importing an old wordpress mysql database to a new one?">Is there any issues with regards to importing an old wordpress mysql database to a new one?</a></li><li><a href="http://www.webtoolol.com/2010/12/26/how-to-create-wordpress-pages/" title="How to Create WordPress Pages">How to Create WordPress Pages</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/2011/06/25/top-10-benefits-of-having-a-self-hosted-wordpress-blog/" title="Top 10 Benefits of Having a Self-Hosted WordPress Blog">Top 10 Benefits of Having a Self-Hosted WordPress Blog</a></li><li><a href="http://www.webtoolol.com/2010/07/10/how-do-i-make-a-blog-with-wordpress/" title="How do i make a blog with wordpress?">How do i make a blog with wordpress?</a></li><li><a href="http://www.webtoolol.com/2011/10/04/how-to-convert-wordpress-themes-to-blogger-template/" title="How to convert wordpress themes to blogger template?">How to convert wordpress themes to blogger template?</a></li><li><a href="http://www.webtoolol.com/2011/11/24/how-to-install-wordpress-2-8-3-on-ubuntu-9-04-linux-xampp-1-7-1/" title="How to install WordPress 2.8.3 on Ubuntu 9.04 Linux XAMPP 1.7.1">How to install WordPress 2.8.3 on Ubuntu 9.04 Linux XAMPP 1.7.1</a></li><li><a href="http://www.webtoolol.com/2010/07/20/how-to-install-wordpress-themes/" title="How To Install WordPress Themes">How To Install WordPress Themes</a></li><li><a href="http://www.webtoolol.com/2011/09/16/duct-tape-marketing-the-worlds-most-practical-small-business-marketing-guide/" title="Duct Tape Marketing: The World&#8217;s Most Practical Small Business Marketing Guide">Duct Tape Marketing: The World&#8217;s Most Practical Small Business Marketing Guide</a></li><li><a href="http://www.webtoolol.com/2011/08/13/the-never-cold-call-again-online-playbook-the-definitive-guide-to-internet-marketing-success/" title="The Never Cold Call Again Online Playbook: The Definitive Guide to Internet Marketing Success">The Never Cold Call Again Online Playbook: The Definitive Guide to Internet Marketing Success</a></li><li><a href="http://www.webtoolol.com/2011/07/30/aprende-a-crear-un-blog-de-wordpress-y-descubre-los-mejores-plugins/" title="Aprende a crear un blog de Wordpress y Descubre los mejores Plugins">Aprende a crear un blog de Wordpress y Descubre los mejores Plugins</a></li><li><a href="http://www.webtoolol.com/2010/11/15/increase-traffic-with-twitter-and-wordpress/" title="Increase Traffic With Twitter And Wordpress">Increase Traffic With Twitter And Wordpress</a></li><li><a href="http://www.webtoolol.com/2011/06/08/adding-links-to-your-sidebar-on-wordpress/" title="adding links to your sidebar on wordpress">adding links to your sidebar on wordpress</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>

