<?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>Bad Deacon Design &#187; Wordpress</title>
	<atom:link href="http://baddeacondesign.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://baddeacondesign.com</link>
	<description>Woodblock Prints, Printmaking, and Fine Art by Sean &#34;Deacon&#34; Neprud</description>
	<lastBuildDate>Tue, 20 Jul 2010 19:45:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress: How to scrape the Tags from Posts of a certain Category</title>
		<link>http://baddeacondesign.com/blog/2009/05/wordpress-how-to-scrape-tags/</link>
		<comments>http://baddeacondesign.com/blog/2009/05/wordpress-how-to-scrape-tags/#comments</comments>
		<pubDate>Fri, 08 May 2009 16:57:33 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tags]]></category>

		<guid isPermaLink="false">http://baddeacondesign.com/?p=31</guid>
		<description><![CDATA[
			
				
			
		
One of the features of Wordpress is that it has a 2-D taxonomy built into it (taxonomy refers to the method of categorizing information).
The built in taxonomy consists of Categories and Tags.
For this site, which I am working on redesigning, I want to separate large portions of this site by category. For instance, I want [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="background-image:url('/img/buttonbird-bigger.png'); background-repeat: no-repeat; height: 79; width: 122px; float: right; margin-left: 10px; padding-left: 6px; padding-top: 6px; padding-bottom: 6px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;source=baddeacon&amp;style=normal&amp;alias=&amp;space=20" height="61" width="50" /><br />
			</a>
		</div>
<p>One of the features of Wordpress is that it has a 2-D taxonomy built into it (taxonomy refers to the method of categorizing information).</p>
<p>The built in taxonomy consists of Categories and Tags.</p>
<p>For this site, which I am working on redesigning, I want to separate large portions of this site by category. For instance, I want a portion of the site to be information and articles focusing on Web Design and Development. I want another to be my personal blog. I may add others down the road, like a section displaying my art, and so on.</p>
<p>My plan was to distinguish these areas by assigning them different categories within Wordpress.</p>
<p>This would only leave me to use Tags to further categorize content within these major areas.</p>
<p>In this way, I am really using Tags like Categories. Sure, this leaves me without the functionality of tags, but really, I don&#8217;t care.</p>
<p>So here&#8217;s the problem:</p>
<p>Wordpress doesn&#8217;t really treat Tags and Categories as a true 2-Dimensional taxonomy system. The way Wordpress functions, it is more like a 1-Dimensional system with two segments, and slightly different functions are built in to each.</p>
<p>I wanted to be able to pull a list of all the tags assigned to posts of a certain category, but this proved hard to do, or hard to find out how to do, with Wordpress&#8217;s current functions and documentation.</p>
<p>I found a piece of code that did something similar as a starting point, and modified it to make it do what I needed it to do.</p>
<p>This code determines which posts are in a specified category or categories, determines the id numbers of the tags associated with each post, throws out duplicate tag ids, then lists all of the tags with those id numbers in an unordered list.</p>
<p>Here&#8217;s the code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;tag&quot;&gt;
&lt;!-- This div isn't needed if you don't want it --&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$category_id</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//This creates an array of the category ids you wanna </span>
<span style="color: #666666; font-style: italic;">//scrape the tags for. By making it an array, multiple </span>
<span style="color: #666666; font-style: italic;">//categories can be scraped.  Replace &quot;3&quot; above with the </span>
<span style="color: #666666; font-style: italic;">//category ID number of whatever category or categories </span>
<span style="color: #666666; font-style: italic;">//you wanna scrape.  Separate multiple category IDs with </span>
<span style="color: #666666; font-style: italic;">//commas.</span>
&nbsp;
<span style="color: #000088;">$post_ids</span> <span style="color: #339933;">=</span> get_objects_in_term<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$category_id</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'category'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//This assigns an array of the id numbers of posts in the </span>
<span style="color: #666666; font-style: italic;">//defined category(s)</span>
&nbsp;
<span style="color: #000088;">$tag_ids_raw</span> <span style="color: #339933;">=</span> wp_get_object_terms<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$post_ids</span><span style="color: #339933;">,</span> 
<span style="color: #0000ff;">'post_tag'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'fields'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'ids'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// This assigns an array of the id numbers of tags for the </span>
<span style="color: #666666; font-style: italic;">//post numbers assigned to $post_ids</span>
<span style="color: #000088;">$tag_ids</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array_unique</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tag_ids_raw</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//This strips away duplicate tag ids in the array</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tag_ids</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> 
&lt;ul&gt;
<span style="color: #000000; font-weight: bold;">&lt;?PHP</span> <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tag_ids</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$mytagid</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000088;">$tagarray</span><span style="color: #339933;">=</span>get_tag<span style="color: #009900;">&#40;</span><span style="color: #000088;">$mytagid</span><span style="color: #339933;">,</span> ARRAY_N<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//In the resulting array, of $tagarray, [0]=&amp;gt;tag </span>
<span style="color: #666666; font-style: italic;">//id, [1]=&amp;gt;tag name, [2]=&amp;gt;tag slug.  Not sure </span>
<span style="color: #666666; font-style: italic;">//what [3] through [9] are yet.</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;li&gt;
&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_tag_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$mytagid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tagarray</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/a&gt;
&lt;/li&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- end FOREACH Loop --&gt;
&lt;/ul&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- end IF Statement --&gt;
&lt;/div&gt; &lt;!-- end div class=&quot;tag&quot; --&gt;</pre></div></div>

<p>EDIT: I moved the unordered list html tags to within the IF statement, so that you don&#8217;t end up with an empty unordered list.</p>
<p>Shortcomings that I know of: The list is not ordered by anything except internal Wordpress database IDs, so it appears to be in random order. Also, I don&#8217;t know how this works with child categories.</p>
<p>If you know of a better way to do this, let me know!</p>

<div class="sociable">
<div class="sociable_tagline">
<small>Share and Enjoy:</small>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category&amp;bodytext=One%20of%20the%20features%20of%20Wordpress%20is%20that%20it%20has%20a%202-D%20taxonomy%20built%20into%20it%20%28taxonomy%20refers%20to%20the%20method%20of%20categorizing%20information%29.%0D%0A%0D%0AThe%20built%20in%20taxonomy%20consists%20of%20Categories%20and%20Tags.%0D%0A%0D%0AFor%20this%20site%2C%20which%20I%20am%20working%20on%20redesigning%2C%20I" title="Digg"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category" title="StumbleUpon"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category&amp;notes=One%20of%20the%20features%20of%20Wordpress%20is%20that%20it%20has%20a%202-D%20taxonomy%20built%20into%20it%20%28taxonomy%20refers%20to%20the%20method%20of%20categorizing%20information%29.%0D%0A%0D%0AThe%20built%20in%20taxonomy%20consists%20of%20Categories%20and%20Tags.%0D%0A%0D%0AFor%20this%20site%2C%20which%20I%20am%20working%20on%20redesigning%2C%20I" title="del.icio.us"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category" title="Mixx"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;t=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category" title="Facebook"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category&amp;source=Bad+Deacon+Design+Woodblock+Prints%2C+Printmaking%2C+and+Fine+Art+by+Sean+%26quot%3BDeacon%26quot%3B+Neprud&amp;summary=One%20of%20the%20features%20of%20Wordpress%20is%20that%20it%20has%20a%202-D%20taxonomy%20built%20into%20it%20%28taxonomy%20refers%20to%20the%20method%20of%20categorizing%20information%29.%0D%0A%0D%0AThe%20built%20in%20taxonomy%20consists%20of%20Categories%20and%20Tags.%0D%0A%0D%0AFor%20this%20site%2C%20which%20I%20am%20working%20on%20redesigning%2C%20I" title="LinkedIn"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="" title="TwitThis"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F05%2Fwordpress-how-to-scrape-tags%2F&amp;title=Wordpress%3A%20How%20to%20scrape%20the%20Tags%20from%20Posts%20of%20a%20certain%20Category&amp;annotation=One%20of%20the%20features%20of%20Wordpress%20is%20that%20it%20has%20a%202-D%20taxonomy%20built%20into%20it%20%28taxonomy%20refers%20to%20the%20method%20of%20categorizing%20information%29.%0D%0A%0D%0AThe%20built%20in%20taxonomy%20consists%20of%20Categories%20and%20Tags.%0D%0A%0D%0AFor%20this%20site%2C%20which%20I%20am%20working%20on%20redesigning%2C%20I" title="Google Bookmarks"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://baddeacondesign.com/blog/2009/05/wordpress-how-to-scrape-tags/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Structure</title>
		<link>http://baddeacondesign.com/blog/2009/03/wordpress-structure/</link>
		<comments>http://baddeacondesign.com/blog/2009/03/wordpress-structure/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 17:10:39 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Stir Fry]]></category>

		<guid isPermaLink="false">http://baddeacondesign.com/?p=35</guid>
		<description><![CDATA[
			
				
			
		

In preparation for this weekend&#8217;s incubation, I created this outline of how Wordpress is structured. Wordpress is Stirfry&#8217;s CMS of choice because it is simple, flexible, and highly customizeable.
I, and many other Stirfryers, are firm believers that form and content are closely related. Understanding how Wordpress works, and how a Wordpress site can be structured will help to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="background-image:url('/img/buttonbird-bigger.png'); background-repeat: no-repeat; height: 79; width: 122px; float: right; margin-left: 10px; padding-left: 6px; padding-top: 6px; padding-bottom: 6px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;source=baddeacon&amp;style=normal&amp;alias=&amp;space=20" height="61" width="50" /><br />
			</a>
		</div>
<div>
<p>In preparation for this weekend&#8217;s <a href="http://stirfrystartups.com/weekend-intensive/stirfry-revolution-march-14-15-2009/">incubation</a>, I created this outline of how Wordpress is structured. Wordpress is <a href="http://stirfrystartups.com/">Stirfry&#8217;s</a> CMS of choice because it is simple, flexible, and highly customizeable.</p>
<p>I, and many other Stirfryers, are firm believers that form and content are closely related. Understanding how Wordpress works, and how a Wordpress site can be structured will help to create the vision for your site. What content you provide, and how you provide it, is intrinsically related to the structure and organization of the site.</p>
<p>With that in mind, this may help you to develop your own website.<br />
BACKGROUND:</p>
<ul>
<li>Wordpress is functionally based on PHP and MySQL.  The presentation is based on HTML and CSS.
<ul>
<li>MySQL &#8211; This is a database that stores all of the information you enter into Wordpress.  The title, content, and data (author, time, categories, etc) for each post or page are all stored in the database</li>
<li>PHP &#8211; PHP is a web programming language that can do stuff with the data in the database, and use variables, operators, control structures, and functions.  The output of PHP is HTML, which your browser then reads.</li>
<li>HTML &#8211; basic internet language.  The server throws a bunch of HTML at your browser, your browser displays a web page.</li>
<li>CSS &#8211; CSS organizes and designs the HTML.  Color, size, location, images, etc, are all determined by the CSS</li>
</ul>
</li>
</ul>
<p>Basic Wordpress, or Wordpress straight out of the box:</p>
<ul>
<li>Two kinds of content: POSTS and PAGES
<ul>
<li>POSTS are blocks of content that are then displayed alone or as groups on webpages</li>
<li>PAGES are content that is always on a certain webpage.  They are &#8220;static&#8221; (though they are still dynamic in the web programming sense of the word)</li>
</ul>
</li>
<li>Posts are shown in reverse chronological order on the homepage.  You can view a single post, or you can click on various archives of posts to see only posts of that type, such as by date, a certain category, or a certain tag.</li>
<li>Wordpress often creates a list of the pages you create.<br />
The header, footer, and sidebar(s) remain the same on every webpage of your site.  Only the content area changes.</li>
<li>Themes change how your site looks.</li>
<li>Conceptually, this format creates a website where the most recent post is the most important, and the older a piece of content is, the less important it becomes.
<ul>
<li>This is similar to TV, radio, magazines, newspapers, and serialized content</li>
</ul>
</li>
</ul>
<p>Building Blocks of Wordpress</p>
<ul>
<li>There are four default regions on a Wordpress page: Header, Footer, Sidebar(s), and content.  You can add regions other than these.</li>
<li>The Loop is a basic engine of Wordpress.  It collects posts from the database and displays them.  The front page is a loop of all your posts.  An archive of a category, date, tag, etc, is a Loop of posts of just that type.</li>
<li>Templates:
<ul>
<li>A template is a PHP file that describes what information is contained in a certain page or element</li>
<li>Every webpage has a template. index.php is the template for the main page, page.php is the template for your pages, archive.php is the template for looking at a category or date archive, etc.</li>
<li>Many regions have a template.  header.php, sidebar.php, footer.php are templates for the content in those regions of the webpages, comments.php describes content of that region, etc. The individual posts do NOT have a template to decribe their content. This is done in the Loop.</li>
<li>A theme is just a collection of templates and a CSS file.</li>
<li>You can create custom templates to extend Wordpress beyond it&#8217;s default content presentation</li>
</ul>
</li>
<li>Metadata:
<ul>
<li>Content has metadata attached, such as author, time, and very importantly, category and tag.  You can use metadata to organize and display content.</li>
<li>Categories and Tags allow for a 2-D organization of content (which can be limiting)</li>
<li>Categories can have custom templates, not sure about tags.</li>
</ul>
</li>
</ul>
<p>Customizing Wordpress</p>
<ul>
<li>It is easy to customize the supplied building blocks</li>
<li>It is harder to add new building blocks to Worpress</li>
<li>Plugins can add new building blocks</li>
<li>Most (all?) changes are done by modifying the theme templates and CSS file.</li>
</ul>
</div>

<div class="sociable">
<div class="sociable_tagline">
<small>Share and Enjoy:</small>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure&amp;bodytext=%0D%0A%0D%0AIn%20preparation%20for%20this%20weekend%27s%C2%A0incubation%2C%20I%20created%20this%20outline%20of%20how%20Wordpress%20is%20structured.%20Wordpress%20is%C2%A0Stirfry%27s%C2%A0CMS%20of%20choice%20because%20it%20is%20simple%2C%20flexible%2C%20and%20highly%20customizeable.%0D%0A%0D%0AI%2C%20and%20many%20other%20Stirfryers%2C%20are%20firm%20belie" title="Digg"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure" title="StumbleUpon"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure&amp;notes=%0D%0A%0D%0AIn%20preparation%20for%20this%20weekend%27s%C2%A0incubation%2C%20I%20created%20this%20outline%20of%20how%20Wordpress%20is%20structured.%20Wordpress%20is%C2%A0Stirfry%27s%C2%A0CMS%20of%20choice%20because%20it%20is%20simple%2C%20flexible%2C%20and%20highly%20customizeable.%0D%0A%0D%0AI%2C%20and%20many%20other%20Stirfryers%2C%20are%20firm%20belie" title="del.icio.us"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure" title="Mixx"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;t=Wordpress%20Structure" title="Facebook"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure&amp;source=Bad+Deacon+Design+Woodblock+Prints%2C+Printmaking%2C+and+Fine+Art+by+Sean+%26quot%3BDeacon%26quot%3B+Neprud&amp;summary=%0D%0A%0D%0AIn%20preparation%20for%20this%20weekend%27s%C2%A0incubation%2C%20I%20created%20this%20outline%20of%20how%20Wordpress%20is%20structured.%20Wordpress%20is%C2%A0Stirfry%27s%C2%A0CMS%20of%20choice%20because%20it%20is%20simple%2C%20flexible%2C%20and%20highly%20customizeable.%0D%0A%0D%0AI%2C%20and%20many%20other%20Stirfryers%2C%20are%20firm%20belie" title="LinkedIn"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="" title="TwitThis"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fbaddeacondesign.com%2Fblog%2F2009%2F03%2Fwordpress-structure%2F&amp;title=Wordpress%20Structure&amp;annotation=%0D%0A%0D%0AIn%20preparation%20for%20this%20weekend%27s%C2%A0incubation%2C%20I%20created%20this%20outline%20of%20how%20Wordpress%20is%20structured.%20Wordpress%20is%C2%A0Stirfry%27s%C2%A0CMS%20of%20choice%20because%20it%20is%20simple%2C%20flexible%2C%20and%20highly%20customizeable.%0D%0A%0D%0AI%2C%20and%20many%20other%20Stirfryers%2C%20are%20firm%20belie" title="Google Bookmarks"><img src="http://baddeacondesign.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://baddeacondesign.com/blog/2009/03/wordpress-structure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
