<?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>guidefordesign &#187; Wordpress</title>
	<atom:link href="http://www.guidefordesign.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.guidefordesign.com</link>
	<description>Free resources for webmasters, design tools, templates, pixel fonts, free vectors and more..</description>
	<lastBuildDate>Tue, 10 Jan 2012 12:39:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Free Wordpress Theme; Mercury</title>
		<link>http://www.guidefordesign.com/free-wordpress-themes/new-free-wordpress-theme-mercury.html</link>
		<comments>http://www.guidefordesign.com/free-wordpress-themes/new-free-wordpress-theme-mercury.html#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:23:56 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Free Wordpress Themes]]></category>
		<category><![CDATA[3 column]]></category>
		<category><![CDATA[3 column wordpress theme]]></category>
		<category><![CDATA[fixed size]]></category>
		<category><![CDATA[free theme]]></category>
		<category><![CDATA[free wordpress template]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[widget ready wordpress template]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=112</guid>
		<description><![CDATA[Mercury Theme Info:
- 3 column
- 2 sidebars for widgets
- Widget ready
- Fixed size
Preview Theme
Download Theme
 This theme is released under GPL. Design by Guidefordesign
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-113" title="gfd_mercury" src="http://www.guidefordesign.com/wp-content/uploads/2009/10/gfd_mercury-300x228.jpg" alt="gfd_mercury" width="300" height="228" /><strong>Mercury</strong> <strong>Theme Info:</strong><br />
- 3 column<br />
- 2 sidebars for widgets<br />
- Widget ready<br />
- Fixed size</p>
<p><a title="free wordpress theme" href="http://wordpresstemplates.guidefordesign.com/?preview_theme=Mercury" target="_blank">Preview Theme</a><br />
<a title="Mercury Theme From Guidefordesign" href="http://wordpresstemplates.guidefordesign.com/Mercury.zip" target="_blank">Download Theme</a></p>
<p> This theme is released under GPL. Design by Guidefordesign</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Ffree-wordpress-themes%2Fnew-free-wordpress-theme-mercury.html&amp;linkname=New%20Free%20Wordpress%20Theme%3B%20Mercury"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/free-wordpress-themes/new-free-wordpress-theme-mercury.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating external wordpress pages</title>
		<link>http://www.guidefordesign.com/wordpress/creating-external-wordpress-pages.html</link>
		<comments>http://www.guidefordesign.com/wordpress/creating-external-wordpress-pages.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 13:33:35 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[external wordpress pages]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[wordpress coding]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=53</guid>
		<description><![CDATA[
Sometimes we need external wordpress pages to do custom things on our website. For example we made news ticker geneartor  page with this way. Here&#8217;s the code that you may use for creating external pages manually;

1. Copy this code;
&#60;?php
require('./wp-config.php');
$wp-&#62;init();
$wp-&#62;parse_request();
$wp-&#62;query_posts();
$wp-&#62;register_globals();
?&#62;
&#60;?php get_header(); ?&#62;&#60;? include(&#8221;menuler.php&#8221;);?&#62;
&#60;div&#62;
&#60;div&#62;
write content here
&#60;/div&#62;
&#60;div&#62;
&#60;?php include (TEMPLATEPATH . &#8216;/sidebar1.php&#8217;); ?&#62;
&#60;/div&#62;
&#60;div&#62;
&#60;?php include (TEMPLATEPATH . &#8216;/sidebar2.php&#8217;); ?&#62;
&#60;/div&#62;
&#60;/div&#62;
&#60;?php get_footer(); ?&#62;
2. Save [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-60" title="wordpress-logo" src="http://www.guidefordesign.com/wp-content/uploads/2009/09/wordpress-logo-200x200.jpg" alt="wordpress-logo" width="86" height="86" /><br />
Sometimes we need external wordpress pages to do custom things on our website. For example we made <a title="news ticker generator" href="http://www.guidefordesign.com/news_ticker_generator.php" target="_blank">news ticker geneartor </a> page with this way. Here&#8217;s the code that you may use for creating external pages manually;</p>
<p><span id="more-53"></span><br />
1. Copy this code;</p>
<p><code>&lt;?php<br />
require('./wp-config.php');<br />
$wp-&gt;init();<br />
$wp-&gt;parse_request();<br />
$wp-&gt;query_posts();<br />
$wp-&gt;register_globals();<br />
?&gt;</code></p>
<p>&lt;?php get_header(); ?&gt;&lt;? include(&#8221;menuler.php&#8221;);?&gt;</p>
<p>&lt;div&gt;<br />
&lt;div&gt;</p>
<p>write content here</p>
<p>&lt;/div&gt;</p>
<p>&lt;div&gt;<br />
&lt;?php include (TEMPLATEPATH . &#8216;/sidebar1.php&#8217;); ?&gt;<br />
&lt;/div&gt;<br />
&lt;div&gt;<br />
&lt;?php include (TEMPLATEPATH . &#8216;/sidebar2.php&#8217;); ?&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php get_footer(); ?&gt;</p>
<p>2. Save it as &#8220;test.php&#8221;</p>
<p>3. Upload it to your main wordpress directory</p>
<p>That&#8217;s it.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fwordpress%2Fcreating-external-wordpress-pages.html&amp;linkname=Creating%20external%20wordpress%20pages"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/wordpress/creating-external-wordpress-pages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Artisteer, new way to create joomla, wordpress templates..</title>
		<link>http://www.guidefordesign.com/webmaster-resources/artisteer-new-way-to-create-joomla-wordpress-templates.html</link>
		<comments>http://www.guidefordesign.com/webmaster-resources/artisteer-new-way-to-create-joomla-wordpress-templates.html#comments</comments>
		<pubDate>Sun, 27 Sep 2009 20:42:12 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Designing Tools]]></category>
		<category><![CDATA[Webmaster Resources]]></category>
		<category><![CDATA[artisteer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.yuzee.com/guidefordesign.com/?p=41</guid>
		<description><![CDATA[New and unique way to create joomla, drupal, wordpress, blogspot templates.. So what&#8217;s artisteer? As written in home page;
Artisteer is the first and only Web design automation product that instantly creates fantastic looking, unique website templates and blog themes.
With Artisteer YOU immediately become a Web design expert, editing and slicing graphics, coding XHTML and CSS, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-42" title="artisteer" src="http://www.yuzee.com/guidefordesign.com/wp-content/uploads/2009/09/artisteer.jpg" alt="artisteer" width="200" height="138" />New and unique way to create joomla, drupal, wordpress, blogspot templates.. So what&#8217;s artisteer? As written in home page;</p>
<p>Artisteer is the first and only Web design automation product that instantly creates fantastic looking, unique website templates and blog themes.</p>
<p>With Artisteer YOU immediately become a Web design expert, editing and slicing graphics, coding XHTML and CSS, and creating Web Design Templates, Joomla templates, Drupal themes, Wordpress themes, DotNetNuke skins, and Blogger templates (Beta) &#8211; all in minutes, without Photoshop or Dreamweaver, and no technical skills.</p>
<p>I can say that artisteer is a revolutionary software on designing  joomla, drupal, wordpress themes and templates. It&#8217;s very easy to create and export themes. If you are a skilled coder, you may change the styles, php codes after exporting. For more information please <a href="http://www.artisteer.com" target="_blank">visit artisteer official page.</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fwebmaster-resources%2Fartisteer-new-way-to-create-joomla-wordpress-templates.html&amp;linkname=Artisteer%2C%20new%20way%20to%20create%20joomla%2C%20wordpress%20templates.."><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/webmaster-resources/artisteer-new-way-to-create-joomla-wordpress-templates.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best wordpress permalink optimisation</title>
		<link>http://www.guidefordesign.com/wordpress/best-wordpress-permalink-optimisation.html</link>
		<comments>http://www.guidefordesign.com/wordpress/best-wordpress-permalink-optimisation.html#comments</comments>
		<pubDate>Fri, 25 Sep 2009 21:04:27 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Seo]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[permalink choice]]></category>
		<category><![CDATA[permalink optimisation]]></category>
		<category><![CDATA[wp permalink configuration]]></category>

		<guid isPermaLink="false">http://www.yuzee.com/guidefordesign.com/?p=6</guid>
		<description><![CDATA[I was looking for the best wordpress permalink optimisation. You know that it&#8217;s very very important to help search engines to crawl our documents exactly. The biggest part of this is the domain name and the link structure. Look what i&#8217;ve found after a little search. The seo sites generally says that the best performance for the [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for the best wordpress permalink optimisation. You know that it&#8217;s very very important to help search engines to crawl our documents exactly. The biggest part of this is the domain name and the link structure. Look what i&#8217;ve found after a little search. The seo sites generally says that the best performance for the permalink  without using plugins etc. is;</p>
<p>/%postname%.html</p>
<p>You can combine this line with %day%, %year% etc. this is not very important, the importance is the shortness of what you type on permalink. I use;</p>
<p>/%category%/%postname%.html</p>
<p>and it works fine..</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fwordpress%2Fbest-wordpress-permalink-optimisation.html&amp;linkname=Best%20wordpress%20permalink%20optimisation"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/wordpress/best-wordpress-permalink-optimisation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

