<?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>Redips &#124; spideR Net &#187; WordPress</title>
	<atom:link href="http://www.redips.net/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redips.net</link>
	<description>Techniques and Web Technologies</description>
	<lastBuildDate>Tue, 31 Aug 2010 07:06:42 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Related Posts in WordPress without a plugin</title>
		<link>http://www.redips.net/wordpress/related-posts/</link>
		<comments>http://www.redips.net/wordpress/related-posts/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 06:25:08 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[related]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=340</guid>
		<description><![CDATA[Post explains simple way of how to display related posts based on best matching post tags and categories. It is only needed to expand theme file single.php with SQL and final loop. In two steps you can have related posts feature without plugin installation.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/related-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popular posts in WordPress</title>
		<link>http://www.redips.net/wordpress/popular-posts/</link>
		<comments>http://www.redips.net/wordpress/popular-posts/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 12:56:24 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[popular]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=72</guid>
		<description><![CDATA[The main idea was to select posts marked by a custom field "popular". I didn't want to install a massive plugin with writing a page statistics to the database. My WordPress site is big (or small) enough so manually editing post list isn't any problem for me. With custom fields, you can add extra meta-data to the post. Next it's only needed to fetch posts marked with "popular" meta-data.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/popular-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moving WordPress</title>
		<link>http://www.redips.net/wordpress/moving-wordpress/</link>
		<comments>http://www.redips.net/wordpress/moving-wordpress/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 12:28:57 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[moving]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=28</guid>
		<description><![CDATA[In few steps, WordPress can be moved to another host. Idea is to move complete installation from public host to local host. Why? Because this way you will have test and production site. Test site isn’t public and you can play and try some modifications before publishing. Posts can be written locally, and after finishing, just perform copy & paste from test to production site.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/moving-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-Cache and 0 cached pages</title>
		<link>http://www.redips.net/wordpress/0-cached-pages/</link>
		<comments>http://www.redips.net/wordpress/0-cached-pages/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 13:04:59 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[0 cached pages]]></category>
		<category><![CDATA[0 expired pages]]></category>
		<category><![CDATA[wp-cache]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=19</guid>
		<description><![CDATA[WP-Cache can make WordPress very fast. I have been monitoring my www.redips.net and discovered that WP-Cache doesn’t work. Directory wp-content/cache was empty (only wp_cache_mutex.lock file was inside). In WP-Cache control panel was written 0 cached pages and 0 expired pages (WP-Cache was enabled). That was call for repair.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/0-cached-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make WordPress fly</title>
		<link>http://www.redips.net/wordpress/make-it-fly/</link>
		<comments>http://www.redips.net/wordpress/make-it-fly/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 06:22:33 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[benchmarking]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[shared host]]></category>
		<category><![CDATA[speed up]]></category>
		<category><![CDATA[wp-cache]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=17</guid>
		<description><![CDATA[New WordPress installation with few modules can give only 3.44 requests per second. After turning on MySQL cache and PHP cache, site becomes 150% quicker. This can be done on MySQL and PHP level. On the other hand if your site is installed on shared host, you probably have restricted access and you can't edit my.cnf nor install APC. You can only install cache module like WP-Cache is, to improve speed.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/make-it-fly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LAMP setup: Make it faster</title>
		<link>http://www.redips.net/wordpress/make-it-faster/</link>
		<comments>http://www.redips.net/wordpress/make-it-faster/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:00:18 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ab]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://www.redips.net/?p=16</guid>
		<description><![CDATA[Popularity in other words means more visitors (traffic) or we can say more requests per second. Did you ever measure how many requests per second your Web server can handle and how you can improve it? This article should give you the answer and show you how to increase quickness of your Web application.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/make-it-faster/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google syntax highlighter</title>
		<link>http://www.redips.net/wordpress/google-syntax-highlighter/</link>
		<comments>http://www.redips.net/wordpress/google-syntax-highlighter/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 07:47:29 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[highlighter]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">http://pc-zg-dbunic.hrt.hr/?p=12</guid>
		<description><![CDATA[With Google Syntax Highlighter you will be able to highlight source code. Highlighting is pure JavaScript without need for any server side action. Google Syntax Highlighter is structured with one main file and optional brushes. In current version, GSH is able to paint: C++, C#, CSS, Delphi, Java, Java Script, PHP, Python, Ruby, Sql, VB, XML/HTML ...]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/google-syntax-highlighter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New to WordPress</title>
		<link>http://www.redips.net/wordpress/new-to-wordpress/</link>
		<comments>http://www.redips.net/wordpress/new-to-wordpress/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 11:04:46 +0000</pubDate>
		<dc:creator>dbunic</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[wp-admin]]></category>

		<guid isPermaLink="false">http://pc-zg-dbunic.hrt.hr/?p=11</guid>
		<description><![CDATA[I didn't have any experience about WordPress till now, and all I can say that is a great CMS. With my LAMP background there wasn't any problem to customize plugins or WordPress template. This post should be a small cookbook of tips and tricks to do before publishing WordPress site.]]></description>
		<wfw:commentRss>http://www.redips.net/wordpress/new-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
