<?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>Freedom of Software &#187; Wordpress</title>
	<atom:link href="http://freedomofsoftware.org/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://freedomofsoftware.org</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 08:30:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Phthalo.com Launched</title>
		<link>http://freedomofsoftware.org/2010/11/phthalo-com-launched/</link>
		<comments>http://freedomofsoftware.org/2010/11/phthalo-com-launched/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 05:23:07 +0000</pubDate>
		<dc:creator>Braydon</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Phthalo]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=1087</guid>
		<description><![CDATA[After three months of development the Phthalo.com (the electronic music label) website is live and streaming! Visit Phthalo.com Design Direction: Ashley &#038; Aris Features include: An alternative JavaScript based URL system, so that audio is able to play in the &#8230; <a href="http://freedomofsoftware.org/2010/11/phthalo-com-launched/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After three months of development the Phthalo.com (the electronic music label) website is live and streaming! Visit <a href="http://phthalo.com/">Phthalo.com</a></p>
<p><center><a href="http://phthalo.com/"><img src="http://braydon.com/blog/wp-content/uploads/2010/11/homepage-e1290402877417.png" alt="" title="homepage" width="500" height="299" class="alignnone size-full wp-image-1088" /></a><br />
<em>Design Direction: <strong><a href="http://www.goteama.com/" class="person">Ashley &#038; Aris</a></strong></em></center></p>
<p><strong>Features include:<br />
</strong>
<ul>
<li>An alternative JavaScript based URL system, so that audio is able to play in the background while navigating the entire site!
<li>Heavy use of JavaScript for status updates, post publishing, uploading, page retrieval, behaviors.
<li>Custom post types for albums and streams in WordPress.
<li>Multiple levels of custom user capability roles defined.
<li> Synchronization with other websites.
</ul>
]]></content:encoded>
			<wfw:commentRss>http://freedomofsoftware.org/2010/11/phthalo-com-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress URL Rewrite</title>
		<link>http://freedomofsoftware.org/2010/07/wordpress-url-rewrite/</link>
		<comments>http://freedomofsoftware.org/2010/07/wordpress-url-rewrite/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:11:56 +0000</pubDate>
		<dc:creator>Braydon</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=853</guid>
		<description><![CDATA[WordPress has it&#8217;s own URL management system, and when developing websites it&#8217;s convenient to be able to add new rules dynamically. I&#8217;ve used this for two websites, music.vtechphones.com and for a site I am building now. It&#8217;s also great to &#8230; <a href="http://freedomofsoftware.org/2010/07/wordpress-url-rewrite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>WordPress has it&#8217;s own URL management system, and when developing websites it&#8217;s convenient to be able to add new rules dynamically. I&#8217;ve used this for two websites, <a href="http://music.vtechphones.com">music.vtechphones.com</a> and for a site I am building now. It&#8217;s also great to keep all modifications in one place, so upgrades are easier, and easier for another developer to pick up!</p>
<p>Create a new plugin, and you place your rules into it doing something similar to the PHP below:</p>
<pre>

add_filter('rewrite_rules_array','wp_insert_my_rewrite_rules');
add_filter('init','flush_rules');

// Remember to flush_rules() when adding rules
function flush_rules(){
  global $wp_rewrite;
  $wp_rewrite->flush_rules();
}

// Adding a new rule
function wp_insert_my_rewrite_rules($rules){
  $newrules = array();

  $newrules['(articles)$'] = 'index.php?post_type=article';
  $newrules['(gallery)$'] = 'index.php?post_type=gallery';
  $newrules['(projects)$'] = 'index.php?post_type=project';
  $newrules['(blog)$'] = 'index.php?post_type=post';

  return $newrules + $rules;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://freedomofsoftware.org/2010/07/wordpress-url-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with BuddyPress Themes</title>
		<link>http://freedomofsoftware.org/2010/07/getting-started-with-buddypress-themes/</link>
		<comments>http://freedomofsoftware.org/2010/07/getting-started-with-buddypress-themes/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 10:21:36 +0000</pubDate>
		<dc:creator>Braydon</dc:creator>
				<category><![CDATA[Recommendations]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=787</guid>
		<description><![CDATA[I&#8217;ve gone through and installed several themes into a testing install of BuddyPress and have selected a few that I think will work as good starting points for further development and a good way to learn more about BuddyPress and &#8230; <a href="http://freedomofsoftware.org/2010/07/getting-started-with-buddypress-themes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gone through and installed several themes into a testing install of BuddyPress and have selected a few that I think will work as good starting points for further development and a good way to learn more about BuddyPress and how to develop social networking sites with it.</p>
<p><a href="http://freebpthemes.com/themes/twentyten-for-buddypress/">TwentyTen BuddyPress</a> (<a href="http://freebpthemes.com/wp-content/plugins/download-monitor/download.php?id=6">Download</a>) This is a theme that extends the default WordPress 3.0 TwentyTen theme to support BuddyPress. A great place to start in enhancing a blog with social networking features. <em> Author: <a href="http://ronandandrea.com/" class="person">Ron &#038; Andrea</a> </em></p>
<p><a href="http://wordpress.org/extend/themes/bp-columns">BuddyPress Columns</a> (<a href="http://wordpress.org/extend/themes/download/bp-columns.1.2.zip">Download</a>) A three-column fixed-width variation to the default BuddyPress theme. There are many smaller details that make this theme feel almost finished, but still a bit of room to work with. <em>Author: <a href="http://twitter.com/modemlooper" class="person">modemlooper</a></em></p>
<p><a href="http://wordpress.org/extend/themes/fishbook-buddypress-buddypack">Fishbook</a> (<a href="http://wordpress.org/extend/themes/download/fishbook-buddypress-buddypack.1.2.zip">Download</a>) A clean monotone light-blue two-column flexible-width theme. It remains consistent with default theme&#8217;s functionality. <em>Author: <a href="http://www.michaelkuhlmann.com/" class="person">Michael Kuhlmann</a></em></p>
<p><a href="http://wordpress.org/extend/themes/jukt-micronics-buddypress-buddypack">Jukt Micronics</a> (<a href="http://wordpress.org/extend/themes/download/jukt-micronics-buddypress-buddypack.1.2.zip">Download</a>) A minimal light two-column fixed-width theme. This one is one of my favorites, it feels open, good use of highlighting colors, and feels direct and to the point. <em>Author: <a href="http://www.michaelkuhlmann.com/" class="person">Michael Kuhlmann</a></em></p>
<p><a href="http://wordpress.org/extend/themes/sense-and-sensibility-bp">Sense and Sensibility</a> (<a href="http://wordpress.org/extend/themes/download/sense-and-sensibility-bp.1.6.zip">Download</a>) A stripped down minimal two-column theme. It diverges by not showing the activity in the main menu, which is good to see some variation in navigation. The theme looks like an ideal starting point for a heavy customized theme as there really isn&#8217;t much styling added to it yet. It also includes the WordPress meta in the sidebar with a link to access the site admin. <em>Author: <a href="http://ronandandrea.com/" class="person">Ron &#038; Andrea</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://freedomofsoftware.org/2010/07/getting-started-with-buddypress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction Video to VideoPress</title>
		<link>http://freedomofsoftware.org/2010/07/introduction-video-to-videopress/</link>
		<comments>http://freedomofsoftware.org/2010/07/introduction-video-to-videopress/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 01:20:50 +0000</pubDate>
		<dc:creator>Braydon</dc:creator>
				<category><![CDATA[Recommendations]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=781</guid>
		<description><![CDATA[More Information at VideoPress.com]]></description>
			<content:encoded><![CDATA[<p><embed type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.01" width="600" height="336" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=OO4thna8"></embed></p>
<p>More Information at <a href="http://videopress.com/">VideoPress.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://freedomofsoftware.org/2010/07/introduction-video-to-videopress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction Video to BuddyPress</title>
		<link>http://freedomofsoftware.org/2010/07/introduction-video-to-buddypress/</link>
		<comments>http://freedomofsoftware.org/2010/07/introduction-video-to-buddypress/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 00:57:20 +0000</pubDate>
		<dc:creator>Braydon</dc:creator>
				<category><![CDATA[Recommendations]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=771</guid>
		<description><![CDATA[More information at BuddyPress.org]]></description>
			<content:encoded><![CDATA[<p><embed src="http://s0.videopress.com/player.swf?v=1" type="application/x-shockwave-flash" width="600" height="337" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=fft9IGgw&amp;isDynamicSeeking=false" title="Introducing BuddyPress - Create your own Social Network"></embed></p>
<p>More information at <a href="http://buddypress.org/">BuddyPress.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://freedomofsoftware.org/2010/07/introduction-video-to-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

