<?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>Studio Sedition: Designing with Code &#187; WordPress</title>
	<atom:link href="http://blog.studiosedition.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.studiosedition.com</link>
	<description>Studio Sedition Blog</description>
	<lastBuildDate>Sat, 06 Mar 2010 19:37:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The One Less Flight website has been released</title>
		<link>http://blog.studiosedition.com/2010/02/one-less-flight-release/</link>
		<comments>http://blog.studiosedition.com/2010/02/one-less-flight-release/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:24:07 +0000</pubDate>
		<dc:creator>khadlock</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[refback]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.studiosedition.com/?p=113</guid>
		<description><![CDATA[Miskeeto, a world-class user experience strategy and evaluation consultancy led by Robert Hoekman, Jr. recently released the web site One Less Flight (OLF). We designed and developed OLF based on Robert's concept of getting companies and individuals to commit to reducing carbon emissions by taking one less flight each year. The concept was to offer [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://miskeeto.com">Miskeeto</a>, a world-class user experience strategy and evaluation consultancy led by <a href="http://rhjr.net">Robert Hoekman, Jr.</a> recently released the web site One Less Flight (OLF). We designed and developed OLF based on Robert's concept of getting companies and individuals to commit to reducing carbon emissions by taking one less flight each year. The concept was to offer badges/banners for people to put on their web site to show their commitment to the cause. By adding the badge to a web site the domain of that web site would appear on the OLF web site to feature the commitment.</p>
<p>I looked into a few ways of making the domain addition work; trackbacks, pingbacks and refbacks. I ended up choosing refbacks because pingbacks and trackbacks are limited to working only with other trackback-enabled or pingback-enabled web sites, which essentially limited the site to working with other blogs. On the other hand, the refback method allows anyone to use a  badge on their site and automatically appear on OLF regardless of how their site is set up.</p>
<p>The custom refback method works through the actual image request. The image request goes through php, which does the following:</p>
<ol>
<li>It verifies that the domain has not already been added to a list of linked domains.</li>
<li>It adds it to the list if it does not already exist.</li>
<li>It then returns the image based on the banner requested.</li>
<li>When someone comes to OLF the list is read and the domains are displayed.</li>
</ol>
<p>Here's the result: <a href="http://www.onelessflight.org">One Less Flight</a></p>
<p>Special thanks to <a href="http://www.w3conversions.com">Stephanie Sullivan</a> for her beautiful CSS coding of my original design!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3699736379118030";
/* 468x15, created 11/17/09 */
google_ad_slot = "2633237492";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.studiosedition.com/2010/02/one-less-flight-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress RSS feeds</title>
		<link>http://blog.studiosedition.com/2009/10/wordpress-rss-feeds/</link>
		<comments>http://blog.studiosedition.com/2009/10/wordpress-rss-feeds/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:56:42 +0000</pubDate>
		<dc:creator>khadlock</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blog.studiosedition.com/?p=15</guid>
		<description><![CDATA[There are numerous built-in RSS feeds available through WordPress that can be added to your theme for visitors to subscribe to, all of which can be found here:  http://codex.wordpress.org/WordPress_Feeds
To get your feed to display as a subscription option in modern browsers, one of the following lines of code can be added to the head [...]]]></description>
			<content:encoded><![CDATA[<p>There are numerous built-in RSS feeds available through WordPress that can be added to your theme for visitors to subscribe to, all of which can be found here: <a href="http://codex.wordpress.org/WordPress_Feeds"> http://codex.wordpress.org/WordPress_Feeds</a></p>
<p>To get your feed to display as a subscription option in modern browsers, one of the following lines of code can be added to the head of your current theme, or you can add all of the lines of code to provide multiple subscription options.</p>
<p><strong>RSS 0.92 feed</strong></p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;alternate&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;application/rss+xml&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Subscribe to &lt;?php bloginfo('name'); ?&gt;</span>&quot; href=&quot;<span style="color: #009900;">&lt;?php bloginfo('rss_url'); ?&gt;</span>&quot; /&gt;</span></pre>
<p><strong>RSS 2.0 feed</strong></p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;alternate&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;application/rss+xml&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Subscribe to &lt;?php bloginfo('name'); ?&gt;</span>&quot; href=&quot;<span style="color: #009900;">&lt;?php bloginfo('rss2_url'); ?&gt;</span>&quot; /&gt;</span></pre>
<p><strong>Atom feed</strong></p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;alternate&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;application/rss+xml&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Subscribe to &lt;?php bloginfo('name'); ?&gt;</span>&quot; href=&quot;<span style="color: #009900;">&lt;?php bloginfo('atom_url'); ?&gt;</span>&quot; /&gt;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.studiosedition.com/2009/10/wordpress-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first WordPress blog</title>
		<link>http://blog.studiosedition.com/2009/10/my-first-wordpress-blog/</link>
		<comments>http://blog.studiosedition.com/2009/10/my-first-wordpress-blog/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 18:28:25 +0000</pubDate>
		<dc:creator>khadlock</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.studiosedition.com/?p=3</guid>
		<description><![CDATA[Believe it or not, this is my first WordPress blog, I've created themes and plugins, but never used it myself. I'll post my findings along with my usual code and design examples.
]]></description>
			<content:encoded><![CDATA[<p>Believe it or not, this is my first WordPress blog, I've created themes and plugins, but never used it myself. I'll post my findings along with my usual code and design examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.studiosedition.com/2009/10/my-first-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
