<?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>Stofko Web Design &#187; Wordpress</title>
	<atom:link href="http://stofko.ca/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://stofko.ca</link>
	<description></description>
	<lastBuildDate>Wed, 26 May 2010 12:02:39 +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>Wordpress Markdown</title>
		<link>http://stofko.ca/wordpress-markdown/</link>
		<comments>http://stofko.ca/wordpress-markdown/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 18:38:31 +0000</pubDate>
		<dc:creator>Bev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://stofko.ca/?p=329</guid>
		<description><![CDATA[Notes on writing a valid Wordpress readme.txt file.]]></description>
			<content:encoded><![CDATA[<p>I learned something about Wordpress Markdown the hard way today. In writing the readme.txt for my new plugin <a href="http://wordpress.org/extend/plugins/wp-imageflow2/">WP-ImageFlow2</a> the formatting of my information on the Wordpress website was messed up. Instead of nice numbered lists and bullets, it came out as a big blog in a paragraph. Very difficult to read!<span id="more-329"></span></p>
<p>I searched the web and couldn&#8217;t find an explanation. I seemed to have followed the markdown instructions properly. By trial and error I managed to come up with a solution &#8211; I needed a blank line both before and after the list.</p>
<p>My original markup that displayed incorrectly:</p>
<div style="border:solid 1px gray; margin: 10px 30px; padding: 10px; background-color: #eeeeee;">This is some info<br />
1. line1<br />
2. line2<br />
3. line3</p>
<p>This is more stuff<br />
* stuff1<br />
* stuff2<br />
* stuff3</p></div>
<p>My new markup that worked:</p>
<div style="border:solid 1px gray; margin: 10px 30px;padding: 10px; background-color: #eeeeee;">This is some info</p>
<p>1. line1<br />
2. line2<br />
3. line3</p>
<p>This is more stuff</p>
<p>* stuff1<br />
* stuff2<br />
* stuff3</p></div>
<p>You learn something new every day!</p>
]]></content:encoded>
			<wfw:commentRss>http://stofko.ca/wordpress-markdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Static Front Page</title>
		<link>http://stofko.ca/wordpress-static-front-page/</link>
		<comments>http://stofko.ca/wordpress-static-front-page/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 14:08:35 +0000</pubDate>
		<dc:creator>Bev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://stofko.ca/?p=186</guid>
		<description><![CDATA[How to choose a static page as the main landing page on a Wordpress website and make the blog a secondary page.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-210" style="border: none; padding-right: 9px; margin-right: 2px;" src="http://stofko.ca/wp-content/uploads/2009/03/shiny-blog-icon2.jpg" alt="" width="105" height="105" />Many business owners today would like to incorporate a blog into their website. The Wordpress blogging platform is a simple to use platform with thousands of template designs, making it a popular choice. However, the Wordpress default configuration places the blog as the main landing page of the website. This tutorial will explain how to choose a static page as the main landing page and make the blog a secondary page.<span id="more-186"></span></p>
<p>According to the Worpress Codex, any page can be set as the front page simply by editing the settings. First you must create two pages &#8211; the html page you want to use as the main landing page (call it &#8220;Home&#8221;) and a blank blog page (call it &#8220;Blog&#8221;).</p>
<p>In the Wordpress Admin interface select Settings &gt; Reading. Look for the section titled &#8220;Front page displays&#8221; and select &#8220;A static page (select below)&#8221;. In the drop-down box for front page choose your &#8220;Home&#8221; page. In the drop-down list for Posts page choose your &#8220;Blog&#8221; page.</p>
<p>You will now have a new static front page and a blog page.</p>
<p style="text-align: justify;">Finally, depending on your theme, you might have 2 navigation links to the home page. You can remove the duplicate easily by first determining the page number used for the static front page.</p>
<p style="padding-left: 30px;"><small>(From Wordpress.com: You can determine the page number by going to Pages-&gt;Edit and hovering over the title of the page. The status bar of your browser will display a URL with a numeric ID at the end. This is the page ID.)</small></p>
<p style="text-align: justify;">Determine the file where the navigation is displayed (it may be header.php) and find the wp_list_pages statement. Exclude the static front page:</p>
<p style="text-align: justify;"><code>wp_list_pages('exclude=7');</code></p>
<p style="text-align: justify;">Now, if you want your home page to be more dynamic you can create a custom page template for the home page. To learn more about using page templates, visit the Codex <a href="http://codex.wordpress.org/Pages">here</a>.</p>
<p>This should be all you need to do to create a static front page and a secondary blog page. This change allows the Wordpress platform to be used on most websites, with the blogging secondary to the main website content.</p>
]]></content:encoded>
			<wfw:commentRss>http://stofko.ca/wordpress-static-front-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
