<?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>Davao Wordpresser &#187; Tips</title>
	<atom:link href="http://davaowordpresser.com/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://davaowordpresser.com</link>
	<description>Notes of a Davao Wordpress Webmaster</description>
	<lastBuildDate>Sat, 30 Jan 2010 08:50:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Place Google Adsense In Your Posts</title>
		<link>http://davaowordpresser.com/how-to-place-google-adsense-in-your-posts/</link>
		<comments>http://davaowordpresser.com/how-to-place-google-adsense-in-your-posts/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 19:52:26 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[wp tips]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Earn]]></category>
		<category><![CDATA[Google Ads]]></category>
		<category><![CDATA[How to's]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/02/06/how-to-place-google-adsense-in-your-posts/</guid>
		<description><![CDATA[If you tried at one time to place some adsense code in your post, you might have found out that it doesn&#8217;t work. The reason for this is that Wordpress filters out your posts for programming codes and unwanted html codes upon publishing to avoid conflict with Wordpress&#8217; programming as well as for some other [...]]]></description>
			<content:encoded><![CDATA[<p>If you tried at one time to place some adsense code in your post, you might have found out that it doesn&#8217;t work. The reason for this is that Wordpress filters out your posts for programming codes and unwanted html codes upon publishing to avoid conflict with Wordpress&#8217; programming as well as for some other security reasons. This includes javascripts which Google adsense is created with.</p>
<p>If you want to place google ads in your posts, there are two ways to do it. One is to edit your theme and place your adsense codes right in the theme file. This requires a bit of php programming so I won&#8217;t really delve into this topic for this entry. The other option which I want to focus on for now is to install the <strong>exec-php plugin</strong> which can be downloaded <a href="http://bluesome.net/data/2005/08/exec-php.zip" target="_blank">here</a>.</p>
<p>1. Download the extracted <em>exec-php.zip</em> file in your online installation using ftp in the <strong>wp-content/plugins/</strong> folder</p>
<p>2. Activate the plug-in in your admin panel</p>
<p>3. Create a new entry to test the plugin</p>
<p>4. In the text editor, click the &#8220;<strong>code</strong>&#8221; tab right beside the &#8220;visual&#8221; tab</p>
<p>5. Copy your adsense code and paste it there (when you switch the editor to the visual editor, the adsense cannot be seen)</p>
<p>6. Publish the entry</p>
<p>7. Check if the adsense code displayed well in the front page</p>
<p>The plug-in actually disables the Wordpress feature that filters out the entries from programming language. This allows both php and javascript to be executed even in posts.</p>
<p>Note: Google adsense  a maximum of four ads only within a page. This could cause the remaining adsense exceeding the number not to appear.</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/how-to-place-google-adsense-in-your-posts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Add &#8220;Read More&#8221; To Cut The Post In the Front Page</title>
		<link>http://davaowordpresser.com/how-to-add-read-more-to-cut-the-post-in-the-front-page/</link>
		<comments>http://davaowordpresser.com/how-to-add-read-more-to-cut-the-post-in-the-front-page/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 18:58:25 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[wp tips]]></category>
		<category><![CDATA[Custom Excerpt]]></category>
		<category><![CDATA[More Tag]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[WP Tags]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/02/06/how-to-add-read-more-to-cut-the-post-in-the-front-page/</guid>
		<description><![CDATA[One way of budgeting your front page space is determining when Wordpress should cut the post in display. In posting an entry in the text editor, this can be done by placing your cursor right where you want it &#8220;cut&#8221;. Then click this icon

By doing so, a page break is automatically inserted. In HTML code, [...]]]></description>
			<content:encoded><![CDATA[<p>One way of budgeting your front page space is determining when Wordpress should cut the post in display. In posting an entry in the text editor, this can be done by placing your cursor right where you want it &#8220;cut&#8221;. Then click this icon</p>
<p style="text-align: center"><img src="http://wordpresser.tagadabaw.com/wp-content/uploads/2008/02/breakicon.gif" alt="break icon in wordpress" /></p>
<p>By doing so, a page break is automatically inserted. In HTML code, it would look like</p>
<p align="center"><font color="#ff0000">&lt; ! &#8211; - more &#8211; - &gt;</font></p>
<p><font color="#000000">which Wordpress interprets as simply, a page break. </font></p>
<p>Then, continue with the entry.</p>
<p>Upon publishing, the word &#8220;more..&#8221; (depending on the theme used) should be displayed right where you placed the page break.</p>
<p>Please note that this only works for non-single/non-permalink web page such as front page, archives, categories, and searches where the post is shown as an excerpt to the <strong>more</strong> point.</p>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/how-to-add-read-more-to-cut-the-post-in-the-front-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Start Blogging</title>
		<link>http://davaowordpresser.com/how-to-start-blogging/</link>
		<comments>http://davaowordpresser.com/how-to-start-blogging/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 19:15:24 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[Blog Hosting]]></category>
		<category><![CDATA[Blog Niche]]></category>
		<category><![CDATA[Placing Entries]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/02/01/how-to-start-blogging/</guid>
		<description><![CDATA[As an abstract of this article, the steps in starting a blog are the following: choose a blog niche, find a blog hosting, place entries in your blog. For sure, many of you would say that there are a lot more &#8220;in-betweens&#8221; within the three but for the sake of simplicity, I&#8217;ll stick with those [...]]]></description>
			<content:encoded><![CDATA[<p>As an abstract of this article, the steps in starting a blog are the following: <strong>choose a blog niche</strong>, <strong>find a blog hosting</strong>, <strong>place entries in your blog</strong>. For sure, many of you would say that there are a lot more &#8220;in-betweens&#8221; within the three but for the sake of simplicity, I&#8217;ll stick with those for now.</p>
<h3> Choosing a Blog Niche</h3>
<p>The reason why one should choose a blog niche is the reality that all of us are masters of something but no one is a master of everything. If you want to develop a blog that you think would be rich and interesting, it would be a good practice to select one for your blog. There are also  other benefits aside from those mentioned above in limiting your blog to a certain interest like loyal readership, better credibility and profile and even more advertiser attractive. The following questions may help you in choosing one:</p>
<p><strong>Does the topic interest you?</strong> If you want to do your blogging for a long time, you would have to talk about it over and over and over again. That means you would have to explore more and more into the intricacies of it. If there is interest, there is a natural curiosity for it. If there is curiosity for it, doing a more research about it will be far more enjoyable and fulfilling for you as a blogger.</p>
<p><strong>Does the topic interest others?</strong> Finding what tickles readers is really a big thing in writing interesting posts. If there is one thing that readers have very little, it&#8217;s time so as a blogger, you must give them there time&#8217;s worth, giving them as close to what they need as possible.</p>
<p><strong>Can you provide ample content? </strong>Creating blogs with niches require you not just to write about what you already know but also to more research on the topic you are talking about. The resources for such research must be readily available for yo. Consider not just data available on the web but more so on books and past readings.</p>
<h3>Finding a Blog Hosting</h3>
<p>When you have finally decided on what topic niche you&#8217;ll have, it is highly recommended that your domain name (or your url ) would include keywords that relate to your niche. For example, if you wish to talk about dogs, a good url would be http://dogs.wordpress.com or best would be http://dogs.com. Of course, those examples are already taken for sure but the point stands out. Search engines rank you higher for words that are within your url.</p>
<p>A huge issue in blog hosting is whether to create a blog in free hosting sites like blogger.com or wordpress.com or to purchase a domain and hosting for your site</p>
<p><strong>If you decide to create a blog in free hosting sites</strong></p>
<p>the advantages include:</p>
<ul>
<li>usually a user-friendly blog admin interface and blog themes that is readily available upon sign-up</li>
<li>free of charge hosting (except your expense in surfing the web in case you pay it yourself)</li>
<li>free technical support from hosting administrator and usually documented processes</li>
<li>enjoying new features and plug-ins available.</li>
</ul>
<p>The disadvantages however include:</p>
<ul>
<li> less freedom to customize site</li>
<li>more difficulty in developing a domain name identity as you will be tagged along the hosting site address</li>
<li>less probable to receive advertising offers, especially if you are hosted in really crowded hosting sites.</li>
</ul>
<p><strong>If you decide to buy your own domain name and hosting</strong></p>
<p>the advantages include:</p>
<ul>
<li> fully customizing the site to your liking</li>
<li>easier monitoring of your site statistics (for strategy development) as you can avail of free website stats services for web masters</li>
<li>establishing your site&#8217;s domain name with your identity as a blogger</li>
</ul>
<p>The disadvantages include:</p>
<ul>
<li>the requirement to learn a bit of coding and even programming unless you opt to pay someone to do it for you (this can be an advantage however if you eye on learning more in information technology)</li>
<li>features available in free hosting sites must be done manually by you or your webmaster</li>
<li>payment must be made for domain name and hosting renewal (usually annually).</li>
</ul>
<h3>Placing Entries in Your Blog</h3>
<p>This is where the real meat of blogging comes in. You would have to create entries within your topic niche that&#8217;s really interesting and read-worth for your readers. You may use humor, poetry or some other writing skills. The choice is yours.</p>
<p>In any web site, the content is the most  thing for readers, may it be articles, poetries or images. It is because of the content that people keep coming back to read from your blog so a huge effort in creating good ones must be taken.</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/how-to-start-blogging/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What is RSS and How Does One Utilize It</title>
		<link>http://davaowordpresser.com/what-is-rss/</link>
		<comments>http://davaowordpresser.com/what-is-rss/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 20:25:31 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[wp tips]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Subscription]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/01/29/what-is-rss/</guid>
		<description><![CDATA[Have you ever wondered what that &#8220;Entries RSS&#8221; or &#8220;Comments RSS&#8221; link in your Wordpress Theme really does?
I received an email from an online buddy Dave Aguila, asking me about how to send his newsletter to people who want to subscribe to it. If his newsletter is online, the thing that pops from my mind [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered what that &#8220;Entries RSS&#8221; or &#8220;Comments RSS&#8221; link in your Wordpress Theme really does?</p>
<p>I received an email from an online buddy <a href="http://daveaguila.com/" target="_blank">Dave Aguila</a>, asking me about how to send his newsletter to people who want to subscribe to it. If his newsletter is online, the thing that pops from my mind is the use of RSS feeds as medium of subscription and updates. Here it goes.</p>
<p><strong>RSS</strong> which stands for  <strong>R</strong>eally <strong>S</strong>imple <strong>S</strong>yndication (previously called Rich Site Summary) is actually a page (an xml file) in your site that can display regularly changing web content. That &#8220;regularly changing web content&#8221; in your case is your blog&#8217;s content. Using RSS, you can keep your readers informed by letting them retrieve the latest content from your site. It saves time for you since you don&#8217;t need to email your subscribers anymore. It also saves time for your subscribers since they don&#8217;t need to visit your site anymore. Moreover, RSS ensures privacy in the part of the subscriber by not needing them to join your email newsletter.</p>
<h3>Why the need for RSS Feed if you got the main page?</h3>
<p>The reason I see for this is that, as your index page (main page) may vary in terms of actual html code (since blogs very in terms of design and layout), this rss file in your site follows a coding rule which is standard across the web. To illustrate this, click on this link: <a href="http://wordpresser.tagadabaw.com/feed/" target="_blank">davao wordpresser rss feed</a> and this link: <a href="http://hugsmiles.com/feed/" target="_blank">hugsmiles free blog hosting rss feed</a> . If you clicked both links, you will find two pages that look similar in terms of format. But, if you click their main sites&#8217; pages : <a href="http://davaowordpresser.com" target="_blank">davao wordpresser</a> and <a href="http://hugsmiles.com" target="_blank">hugsmiles free blog hosting</a> respectively, you can see that the two sites would look differently. <strong>In order for this dynamic content updates to be universal, it has to follow a certain standard format. That format is the file in XML format (*.xml) which is the RSS file included with many website platforms including Wordpress.</strong></p>
<h3>How do you allow people to subscribe to your feed</h3>
<p>This is where you need an <strong>RSS Aggregator</strong>. An <em>RSS Aggregator</em> also known as a <em>feed aggregator</em>, <em>feed reader</em>, <em>news reader</em> or simply as an <em>aggregator</em>, is client software or a web application which aggregates (collects) syndicated web content such as news headlines, blogs (<em>your blog in this case)</em>, podcasts, and video blogs in a single location for easy viewing. Examples of these online RSS Aggregators are <a href="http://feedburner.com" target="_blank">Feedburner.com</a> and <a href="http://reader.google.com/" target="_blank">Google Reader</a> . As a publisher of your feed, you have to register to an RSS Aggregator of your choice. Depending on the aggregator, you usually register your RSS feed url (<em>right click on your site&#8217;s Entries RSS or alternatively Comments RSS if you want them to subscribe to the latest comments on your blog; then copy link location or url</em>) into your new account in the aggregator that you chose. Then, they can provide you details on placing a link in your blog. This link, when clicked by the reader who wants to subscribe, directs them to a page where they can subscribe to your feed.</p>
<p>Aside from subscriptions, RSS feed can also be used to</p>
<ul>
<li>Notify people of the arrival of new products in a store</li>
<li>Weather and other alerts of changing conditions</li>
<li>Notification of additions of new items to a database, new messages received or new members to a group</li>
</ul>
<p>These are just some of the many ways an RSS can be used. Try to experiment a little. Who knows, you just might think of a very good use of RSS feeds for your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/what-is-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Concept of Earning Online In a Nutshell</title>
		<link>http://davaowordpresser.com/the-concept-of-earning-online/</link>
		<comments>http://davaowordpresser.com/the-concept-of-earning-online/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 18:04:28 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/01/27/the-concept-of-earning-online/</guid>
		<description><![CDATA[Previously, I was asked about the concept of earning online. Each time, I tried to put everything in a nut shell. Here&#8217;s another attempt:
&#8220;Imagine that your website or blog is one of the television stations. Just as these stations earn from advertisings, so will you earn through your site.&#8221;
Please take note that from here onwards, [...]]]></description>
			<content:encoded><![CDATA[<p>Previously, I was asked about the concept of earning online. Each time, I tried to put everything in a nut shell. Here&#8217;s another attempt:</p>
<p>&#8220;Imagine that your website or blog is one of the television stations. Just as these stations earn from advertisings, so will you earn through your site.&#8221;</p>
<p><em><quote>Please take note that from here onwards, I shall interchange the terms <strong>blog</strong>, <strong>blogsite</strong>, <strong>site</strong> or <strong>website</strong>. The term &#8220;Blog&#8221; which is actually derived from the words &#8220;Web Log&#8221; is just one of the different forms of a website.</quote></em></p>
<h3><strong>The Dynamics of Your Site as a Channel</strong></h3>
<p>If you know a bit about marketing, you would agree that tv stations who have higher ratings are more likely to receive advertising offers. The same is true with your site as a channel or station. <strong>The higher your ratings, the higher offers you&#8217;ll get</strong>. ( I wonder not about fuzz over those tv ratings they are talking about, hehe). Kidding aside, the next question would be how to increase your site&#8217;s ratings. Or more importantly, how do you know your rating in the first place? Hold on to those questions as it opens us to a whole new topic springing from where we are right now.</p>
<p>One twist with our nutty explanation however is that, unlike television stations which do not really reach up to a thousand in number worldwide, there are millions of blogs readily open for business in the world wide web to date. So how does your eetsie bitsy tinny winny blog get recognized in the crowded blogosphere (a term used in the virtual environment where blogs interconnect with each other)? Through<strong> search engines</strong>. We&#8217;ll tackle that one too pretty soon. Just keep those ideas coming and those brains absorbing. I just really need to hit the sack.</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/the-concept-of-earning-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Category: Blogging (And How to Earn from It)</title>
		<link>http://davaowordpresser.com/new-category-blogging-and-how-to-earn-from-it/</link>
		<comments>http://davaowordpresser.com/new-category-blogging-and-how-to-earn-from-it/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 17:54:07 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[Earn]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/01/27/new-category-blogging-and-how-to-earn-from-it/</guid>
		<description><![CDATA[Can one really earn from blogging? If you ask me, my answer is YES! Not just through blogging actually but through the internet in general.
But before that, let me tell you why I decided to create this new category. Recently, I have been asked by friends and those whom I meet online about how to [...]]]></description>
			<content:encoded><![CDATA[<p>Can one really earn from blogging? If you ask me, my answer is YES! Not just through blogging actually but through the internet in general.</p>
<p>But before that, let me tell you why I decided to create this new category. Recently, I have been asked by friends and those whom I meet online about how to earn through blogging. Some who know me personally were aware that I am earning online already. It could be by chance that they all come together in one time or maybe they saw <a href="http://www.yugatech.com/blog/problogging/welcome-notes-to-visitors-from-mel-joey/#comment-150692" target="_blank">Mel and Joey&#8217;s episode</a> on &#8220;How to Make Money through Blogging&#8221; where, according to <a href="http://www.yugatech.com/blog/abe-olandres/" target="_blank">Abe Olandres</a> (one of the professional bloggers featured in the segment) there was &#8220;Too much hype&#8221; about it, giving the impression that earning is too easy. I agree with Abe on this. Blogging is for everyone but earning through blogging is only for those who are willing to give all that they got for it &#8211; patience, hard work and a lot of time.</p>
<p>Anyway, as I was saying. With all these currently happening, I received a suggestion to blog about it. That way, I get too keep their questions recorded online so as not to miss any, especially the important ones. Thanks dear.</p>
<p>So here it is, launched is the category about earning online. I do not boast though of my earnings ( and i do not intend to) but I am just passionate in telling anybody who asks me that earning through the web, not just in blogging, is really possible.</p>
<p>Now, where do I start? Hmm&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/new-category-blogging-and-how-to-earn-from-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Development</title>
		<link>http://davaowordpresser.com/wordpress-development/</link>
		<comments>http://davaowordpresser.com/wordpress-development/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 16:27:44 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2008/01/15/wordpress-development/</guid>
		<description><![CDATA[If you have a wordpress installation later than the current WordPress (Version 2.3.2), you might find a small bar on your admin panel that says &#8220;A new version of WordPress is available! Please update now.&#8221; Well, I&#8217;m not really sure for your installation but all of my wordpress installations have it.
This is one of the [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a wordpress installation later than the current WordPress (Version 2.3.2), you might find a small bar on your admin panel that says &#8220;<strong><em>A new version of WordPress is available! <a href="http://wordpress.org/download/">Please update now</a>.</em></strong>&#8221; Well, I&#8217;m not really sure for your installation but all of my wordpress installations have it.</p>
<p>This is one of the things that I think Wordpress webmasters are really satisfied about in WP &#8211; their online, fully documented, highly accessible, sincerely created and not to mention FREE support and updates. Many are thankful for the development of this open-source platform. I don&#8217;t mean to over do it, raising WP up my clouds. It&#8217;s just that I myself is a beneficiary of the efforts of the developers.</p>
<p>I have encountered quite a lot in terms of errors or customized features throughout my wordpress projects and the community seem to be there 24/7 available for consultation. Wordpressers do not also get behind the times as updates like these are very much announced to the world and to their community.</p>
<p>Summing it up, I am very grateful to have been learning Wordpress all along. To all the developers, kudos and more power!</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/wordpress-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress or Wordpress MU?</title>
		<link>http://davaowordpresser.com/wordpress-or-wordpress-mu/</link>
		<comments>http://davaowordpresser.com/wordpress-or-wordpress-mu/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 18:44:15 +0000</pubDate>
		<dc:creator>dwordpresser</dc:creator>
				<category><![CDATA[wp tips]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Opinions]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://davaowordpresser.com/2007/12/14/wordpress-or-wordpress-mu/</guid>
		<description><![CDATA[I have handled regular Wordpress and Wordpress Multi User installations for different sites. I actually began learning the regular Wordpress. It was good to  practice on as  changes can be committed online, directly into the user account.
The main difference between the two is that the regular, stand-alone Wordpress (WP) installation

Caters for single blogs [...]]]></description>
			<content:encoded><![CDATA[<p>I have handled regular Wordpress and Wordpress Multi User installations for different sites. I actually began learning the regular Wordpress. It was good to  practice on as  changes can be committed online, directly into the user account.</p>
<p>The main difference between the two is that the regular, stand-alone Wordpress (WP) installation</p>
<ol>
<li>Caters for single blogs (which can have multiple users but single administration panel)</li>
<li>Its theme can be customized online (using the theme editor)</li>
<li>The plug-ins can be edited</li>
</ol>
<p>while Wordpress Multi-User (WP MU)</p>
<ol>
<li>Is designed to cater from hundreds to thousands of blogs, each with own administration panel.</li>
<li>Its theme editor is disabled since one instance of a theme is shared among the users (which means what one gets from a theme is the same to all who uses the same theme)</li>
<li>Plugins cannot be edited.</li>
</ol>
<p>These differences are some of the most obvious in the user side.</p>
<p>Here are points that explain WP MU features further</p>
<ol>
<li>It is created based on WP. It is created as a &#8220;shell outside&#8221; a regular Wordpress installation. According to their website, 95%- 99% of the core of WP MU is WP.</li>
<li>WP MU can have multiple blogs in one installation which means smaller file size for the hosting. Imagine installing fifty (50) blogs using WP on one hosting and WP MU on the other. The savings in terms of size is huge, especially for a website owner.</li>
<li>The installation process is different.</li>
<li>The panel for the &#8220;super administrator&#8221; or the site owner can be hidden to regular users, depending on the restrictions.</li>
<li>There is a folder named &#8220;mu-plugins&#8221;. All plug-ins placed inside it are automatically enabled site wide.</li>
<li>It still has the folder &#8220;plugins&#8221; (which is also present in WP). All plugins placed inside it which can be enabled per blog by the specific blog owner (a.k.a. sub-administrator).</li>
<li>WP MU requires the site owner (or the web master) to know a bit of programming and coding. If you plan to use WPMU, it is recommended that you tinker with WP first.</li>
</ol>
<p>Themes that are available online for download are generally working for both installations. The theme management system stayed mainly the same for both installations I guess.</p>
<p>There are issues on installing plug-ins however. Many plug-ins designed for WP do not run on WP MU mainly because there is a difference in accessing and creating tables in the database. Some common plug-ins (like Akismet) can work if this is placed on the &#8220;plug-ins&#8221; folder and not the &#8220;mu plug-ins&#8221; folder.  A set of plug-ins compatible for Wordpress MU can be found <a href="http://wpmudev.org/plugins.php" target="_blank">here</a>.</p>
<p>Some of my sites that uses WP MU include this <a href="http://tagadabaw.com" target="_blank">Davao City</a> web community, <a href="http://tagadabaw.com" target="_blank">Tagadabaw.com</a> as well as this <a href="http://toinky.com" target="_blank">online shop</a>, <a href="http://toinky.com" target="_blank">Toinky.com</a>.</p>
<p>To sum it up, if you plan to maintain like 20 to 30 blogs or so or offer a <a href="http://hugsmiles.com" target="_blank">blog hosting</a> (may it be <a href="http://" target="_blank">free</a> or for a minimum fee), Wordpress Multi User is for you. You just have to get ready to get your hands dirty with ample amounts of code and a bit of programming or you can <a href="http://goldwyn.hugsmiles.com" target="_blank">hire one</a> who can set it up for you and teach you how to manage it.</p>
<p>If you plan to maintain fewer than 20 blogs (this is a personal preference based on experience by the way), then I recommend the regular stand alone Wordpress installation.</p>
<p>That&#8217;s it for now. May the blogging force be with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://davaowordpresser.com/wordpress-or-wordpress-mu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
