<?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; wordpress</title>
	<atom:link href="http://davaowordpresser.com/category/wordpress/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>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>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>
