<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Pippin's Pages</title>
	
	<link>http://pippinspages.com</link>
	<description>{ Coding everyday keeps the bugs away }</description>
	<lastBuildDate>Fri, 12 Mar 2010 18:33:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/pippinspages/XXtm" /><feedburner:info uri="pippinspages/xxtm" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Wordpress CMS Tips</title>
		<link>http://pippinspages.com/tutorials/wordpress-cms-tips-2/</link>
		<comments>http://pippinspages.com/tutorials/wordpress-cms-tips-2/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:57:12 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1031</guid>
		<description><![CDATA[
After utilizing Wordpress as a Content Management System for many different websites, including PestaRoo.com and Nebraska Christian Music Festival, I have found what I believe to ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://pippinspages.com/wp-content/uploads/2010/03/wordpress-cms.jpg" alt="Wordpress CMS Tips" title="wordpress-cms" width="496" height="196" class="alignnone size-full wp-image-1135" /><br />
<span style="font-weight: normal;">After utilizing Wordpress as a Content Management System for many different websites, including <a title="PestaRoo" href="http://pestaroo.ccom" target="_blank">PestaRoo.com</a> and <a title="Nebraska Christian Music  Festival" href="http://nebraskacmf.org" target="_blank">Nebraska Christian Music Festival</a>, I have found what I believe to  be some of the best techniques.</span><span id="more-1031"></span></p>
<h3>Categories</h3>
<p>Section off the content of the website into different categories. For example, if you are developing a theme for a magazine-style website, you may have categories such as:</p>
<ul>
<li>Local</li>
<li>US</li>
<li>Global</li>
<li>Entertainment</li>
<li>Sports</li>
<li>Business</li>
<li>Humorous</li>
<li>etc, etc</li>
</ul>
<p>The website&#8217;s posts (articles) are then filed into these different categories to allow for easy browsing by readers. Use your website&#8217;s categories as the site&#8217;s main navigation. They can be listed with the <a title="WP Template tags" href="http://codex.wordpress.org/Template_Tags" target="_blank">Wordpress template tag</a> &lt;?php wp_list_categories(); ?&gt;. Use the site&#8217;s pages as secondary navigation.</p>
<h3>Page Templates</h3>
<p>Create a variety of page templates so that the site owner can easily choose between multiple page structures. For example, create a template for the homepage that displays one or more featured posts, latest news items, latest photos, etc. Then also create a template for a full width page, a gallery page, and any others you wish.</p>
<p>Include this at the top template_name.php in order to create a page template:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #009933; font-style: italic;">/**
 * @package WordPress
 * @subpackage Default_Theme
 */</span>
&nbsp;
 <span style="color: #666666; font-style: italic;">/*
Template Name: Home Page
*/</span>
&nbsp;
get_header<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<h3>Easy Linkability</h3>
<p>One of my clients once said to me &#8220;wow, that is scary powerful&#8221; when I showed him how easy it is to create a link within a post or page to another post or page on the site. While this may not be something that developers think about often because we&#8217;re no use to creating links with</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;. . .&quot;</span>&gt;</span>Link<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></div></div>

<p>but it really is one of those little things that help to please the client.</p>
<p>I like to use the <a href="http://wordpress.org/extend/plugins/link-to-post/">Link to Post</a> plugin. It&#8217;s very minimal and makes creating links even easier than the default Wordpress method.</p>
<h3>Image Editing</h3>
<p>Making it easier for your client to manage their website&#8217;s images is key for a good CMS. <a href="http://wordpress.org/extend/plugins/scissors/">Scissors</a> is one of my all-time favorite wordpress plugins that I include with every site I develop, whether it be a blog, e-commerce solution, or personal portfolio.</p>
<h3>Contact Forms</h3>
<p>Give your client the ability to create and modify contact forms. Several really good plugins for this include: <a href="http://www.deliciousdays.com/cforms-plugin/">C-Forms</a> and <a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a>.</p>
<p>It&#8217;s important to remember to include css styling for contact forms in your theme, even if you are not immediately using any forms.</p>
<h3>Permalinks</h3>
<p>Ensuring that people are able to get to various parts of the site by typing in the direct url is very important, so use a good permalink structure. I personally like</p>
<pre>/%category%/%postname%/</pre>
<p>the most.</p>
<h3>Posts &#8211; Dos and Don&#8217;ts</h3>
<p>Obviously posts will be used for creating articles, tutorials, blog posts, etc, but they can also be used for other sections of the website. For example, as seen in the header of <a href="http://pestaroo.com">PestaRoo.com</a> (the skinny orange box), posts can be used for &#8220;announcements&#8221;. To do this, create a category called something like &#8220;announcements&#8221; and write the post. That post can then be displayed wherever you wish by using the following code in one or more of your template files, such as header.php:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$cat_posts</span> <span style="color: #339933;">=</span> get_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'numberposts=1&amp;cat=#'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!--replace &quot;#&quot; with your category id--&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;">$cat_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
	setup_postdata<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</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;small&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_date<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'m-d-Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/small&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></pre></td></tr></table></div>

<p>It is also best to then hide this &#8220;announcement&#8221; post from showing up on any category pages. To do this, simple exclude the &#8220;announcement&#8221; category id # from the navigation, and also from the post query. This can be done in a couple of different ways.</p>
<p>To exclude from navigation:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_categories<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'exclude=#'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>To exclude from the post query inside of the loop:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
	query_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cat=-#'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$more</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// set $more to 0 in order to only get the first part of the post</span>
<span style="color: #000088;">$more</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>	
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                  . . . 
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>If you&#8217;d prefer not to exclude the category from inside the template file, there are also a variety of plugins that perform the same task quite nicely. I usually use <a href="http://wordpress.org/extend/plugins/category-visibility-ipeat/">Category Visibility</a>.</p>
<p><strong>Do</strong> make use of posts for things like announcements (unless you&#8217;d prefer to code in a custom write panel to fulfill the same idea).</p>
<p>Do <strong>not</strong> go crazy with this. If you begin creating dozens of posts like the example above, you will create a maze of posts that quickly become difficult to navigate through when you wish to make an update.</p>
<p><strong>Do</strong> create dedicated categories for these sort of posts, for example, &#8220;announcement&#8221;.</p>
<p>I will continue to add to this list, so watch for Wordpress CMS Tips &#8211; Part 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/wordpress-cms-tips-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>March Designs</title>
		<link>http://pippinspages.com/design/march-designs/</link>
		<comments>http://pippinspages.com/design/march-designs/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 05:48:19 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=884</guid>
		<description><![CDATA[I&#8217;m always keeping my eye out for new, excellent designs. Below are what has caught my eye as of late.

Dilate Media


Graph Force

Eagle Bend Apostolic Church

Simple ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always keeping my eye out for new, excellent designs. Below are what has caught my eye as of late.</p>
<h3></h3>
<h3>Dilate Media</h3>
<p><a href="http://dilatemedia.co.uk/"><img class="alignnone size-large wp-image-885" title="Dilate Media" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-6-486x207.png" alt="Dilate Media" width="486" height="207" /></a></p>
<p><span id="more-884"></span></p>
<h3>Graph Force</h3>
<p><a href="http://graphorce.com/"><img class="alignnone size-full wp-image-886" title="Graph Force" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-7-e1267835635844.png" alt="Graph Force" width="485" height="200" /></a></p>
<h3>Eagle Bend Apostolic Church</h3>
<p><a href="http://www.eaglebend.org/"><img class="alignnone size-large wp-image-887" title="Eagle Bend Apostolic Church" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-8-486x176.png" alt="Eagle Bend Apostolic Church" width="486" height="176" /></a></p>
<h3>Simple Station</h3>
<p><a href="http://simplestation.com/"><img class="alignnone size-large wp-image-889" title="Picture 10" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-10-486x223.png" alt="" width="486" height="223" /></a></p>
<h3>Zefxis</h3>
<p><a href="http://www.zefxis.gr/"><img class="alignnone size-large wp-image-890" title="Zefxis" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-11-486x277.png" alt="Zefxis website design" width="486" height="277" /></a></p>
<h3>Crafted Pixelz</h3>
<p><a href="http://www.craftedpixelz.co.uk/"><img class="alignnone size-large wp-image-891" title="Crafted Pixelz" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-13-486x232.png" alt="Crafted Pixelz" width="486" height="232" /></a></p>
<h3>Velox Media</h3>
<p><a href="http://www.veloxmedia.com/"><img class="alignnone size-large wp-image-892" title="Velox Media" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-14-486x266.png" alt="Velox media" width="486" height="266" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/design/march-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternate Your Comment Colors</title>
		<link>http://pippinspages.com/css/alternate-comment-colors/</link>
		<comments>http://pippinspages.com/css/alternate-comment-colors/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 01:08:41 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1003</guid>
		<description><![CDATA[
Effectively styling comments can be a difficult task. One tip to make your comments more readable is to alternate their background colors.
By default, Wordpress assigns ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1061" title="even-odd" src="http://pippinspages.com/wp-content/uploads/2010/03/even-odd.jpg" alt="" width="496" height="196" /><br />
Effectively styling comments can be a difficult task. One tip to make your comments more readable is to alternate their background colors.</p>
<p>By default, Wordpress assigns a class of &#8220;even&#8221; or &#8220;odd&#8221; to each comment in the list; the first is odd, the second even, the third odd, etc, etc.</p>
<p>So, to achieve the desired effect, put this in your style.css:</p>
<p><span id="more-1003"></span></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">li<span style="color: #6666ff;">.even</span>	<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFFF</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
li<span style="color: #6666ff;">.odd</span>	<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#F9F9F9</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Add in a few other styling elements, such as borders and clever margins, and you can get some really slick results.</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/css/alternate-comment-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Blocks – Free</title>
		<link>http://pippinspages.com/wordpress-themes/building-blocks-free/</link>
		<comments>http://pippinspages.com/wordpress-themes/building-blocks-free/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 03:48:12 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[one-column]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=840</guid>
		<description><![CDATA[
After writing a dozen plus custom themes and starting from scratch each time, I finally got smart and wrote a base template that lays out ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://pippinspages.com/wp-content/uploads/2010/03/building-blocks1.jpg" alt="" title="building-blocks" width="496" height="196" class="alignnone size-full wp-image-1064" /></p>
<p>After writing a dozen plus custom themes and starting from scratch each time, I finally got smart and wrote a base template that lays out all of the basic structures and styles, shavings hours off of every project.</p>
<p><span id="more-840"></span></p>
<p>Building Blocks includes:</p>
<blockquote>
<ul>
<li>Widget ready sidebar</li>
<li>Template file for sidebar-enabled pages</li>
<li>Template file for pages with no sidebar</li>
<li>Clean coding with comments for easy modification</li>
<li>Basic styling for most elements, including forms</li>
</ul>
</blockquote>
<p><a title="Building Blocks Free Wordpress Theme" href="http://buildingblocks.pippinspages.com" target="_blank">View Demo</a></p>
<a class="downloadlink" href="http://pippinspages.com/wp-content/plugins/download-monitor/download.php?id=1" title="Version1.0 downloaded 1 times" >Download Building Blocks (1)</a>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress-themes/building-blocks-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Override Inline Styles</title>
		<link>http://pippinspages.com/tutorials/override-inline-styles/</link>
		<comments>http://pippinspages.com/tutorials/override-inline-styles/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 22:51:24 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=831</guid>
		<description><![CDATA[
A few weeks ago I ran into a problem while styling some elements in a wordpress plugin. The source of problem was that the plugin ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://pippinspages.com/wp-content/uploads/2010/03/inline-styles.jpg" alt="" title="inline-styles" width="496" height="196" class="alignnone size-full wp-image-1067" /></p>
<p>A few weeks ago I ran into a problem while styling some elements in a wordpress plugin. The source of problem was that the plugin author had used inline styles to control the elements. <span id="more-831"></span>This prevented my user-defined styles from applying. Rather than manually going into the plugin source and removing the styles (any modifications would be over ridden if I ever updated the plugin), I found a solution posted by <a title="Natalie Jost" href="http://nataliejost.com/542" target="_blank">Natale Jost</a>.</p>
<p>It&#8217;s really simple.</p>
<p>Your original style looks something like:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div  <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">red</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><!--more--><br />
But, thanks to the inline styles, the above don&#8217;t actually appear. By adding [style] to the end of div, the nasty inline styles will be over written.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div<span style="color: #00AA00;">&#91;</span>style<span style="color: #00AA00;">&#93;</span>  <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">red</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>This trick works in all browsers except IE 6 (no surprise).</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/override-inline-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional Tags</title>
		<link>http://pippinspages.com/tutorials/conditional-tags/</link>
		<comments>http://pippinspages.com/tutorials/conditional-tags/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 17:28:02 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[conditional tags]]></category>

		<guid isPermaLink="false">http://pippinsdesign.com/?p=755</guid>
		<description><![CDATA[
Wordpress Conditional Tags are an extremely useful tool that may seem scary to the beginner, but are really quite simple.

Why use them?

They aide in creating ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://pippinspages.com/wp-content/uploads/2010/02/conditional-tags.jpg" alt="" title="conditional-tags" width="496" height="196" class="alignnone size-full wp-image-1069" /><br />
Wordpress Conditional Tags are an extremely useful tool that may seem scary to the beginner, but are really quite simple.</p>
<p><span id="more-755"></span></p>
<h3>Why use them?</h3>
<ul>
<li>They aide in creating simpler themes with fewer template / style files</li>
<li>Make your wordpress run faster as they can cut down on the number of files accessed</li>
<li>Create an easy way to manage dynamic style elements</li>
</ul>
<h3>Where to use them</h3>
<ul>
<li>index.php</li>
<li>page.php</li>
<li>header.php</li>
<li>anything.php</li>
</ul>
<h3>How to use them</h3>
<p>Probably the simplest and most common usage of conditional tags is for controlling whether a certain element (for example, a div tag) appears. As is often the case when I am building a website, I want something like an announcement box (for headline news, etc) to appear in the header area when a visitor is viewing the homepage, but to disappear when on any other page.</p>
<p>To accomplish this sort of task, structure your index.php, page.php, or anything.php like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_front_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
  &lt;div class=&quot;announcement&quot;&gt;
    Big News!
  &lt;/div&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></pre></td></tr></table></div>

<p>The above code will create a div that only shows up when a visitor is on the front (home) page of your website.</p>
<p>If, perhaps, you&#8217;d rather the announcement div showed up on your contact page, which we will for the sake of this tutorial assume has a page ID # of 5, then use this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'5'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
  &lt;div class=&quot;announcement&quot;&gt;
    Big News!
  &lt;/div&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></pre></td></tr></table></div>

<h3>Controlling Style Sheets</h3>
<p>Maybe you&#8217;d like to have a blue color scheme on the homepage, but a red theme on everything else. And then you&#8217;d also like to have a default style sheet for all other pages. Simply put the following code in your header.php.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_front_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/style-blue.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&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></pre></td></tr></table></div>

<p>This is just a quick intro to wordpress conditional tags. Watch out for Conditional Tags &#8211; Part 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/conditional-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pikachoose + Wordpress</title>
		<link>http://pippinspages.com/tutorials/pikachoose-gallery-wordpress-integration/</link>
		<comments>http://pippinspages.com/tutorials/pikachoose-gallery-wordpress-integration/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 16:56:20 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pippinsdesign.com/?p=735</guid>
		<description><![CDATA[Pikachoose &#8211; http://pikachoose.com/ &#8211; is a jquery gallery plugin provides a very smooth, attractive gallery system. There is only one problem: it&#8217;s static and requires ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/pikachoose2.jpg"><img class="alignnone size-full wp-image-823" title="pikachoose" src="http://pippinspages.com/wp-content/uploads/2010/02/pikachoose2.jpg" alt="" width="486" height="296" /></a>Pikachoose &#8211; <a title="Pikachoose jquery gallery plugin" href="http://pikachoose.com/" target="_blank">http://pikachoose.com/</a> &#8211; is a jquery gallery plugin provides a very smooth, attractive gallery system. There is only one problem: it&#8217;s static and requires manuel html editing to add or remove images.<br />
<span id="more-735"></span><br />
This tutorial will walk you through how to implement Pikachoose in a wordpress blog and make it dynamic by utilizing individual wordpress posts for gallery thumbnails.</p>
<h2>1 &#8211; Get the Gallery</h2>
<p>The Pikachoose gallery can be downloaded from the plugin&#8217;s homepage <a title="Pikachoose jquery gallery plugin" href="http://pikachoose.com/" target="_blank">http://pikachoose.com/</a>. Get the latest version and extract the archive to your theme&#8217;s directory.</p>
<p><img src="http://pippinspages.com/wp-content/uploads/2010/02/Folder-Structure1.png" alt="" title="Folder-Structure" width="496" height="47" class="alignnone size-full wp-image-1131" /></p>
<p>The image above shows the folder structure we are looking for.</p>
<h2>2 &#8211; Edit Header.php</h2>
<p>Place the following code into your theme&#8217;s header.php file. This will call the gallery&#8217;s style sheet and the necessary jquery and javascript files. Be sure that you paste it after &lt;?php wp_head(); ?&gt; and before &lt;/head&gt;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;?php echo bloginfo('stylesheet_directory') ?&gt;</span></span>/pikachoose/styles.css&quot; rel=&quot;stylesheet&quot; /&gt;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;?php echo bloginfo('stylesheet_directory') ?&gt;</span></span>/pikachoose/js/jquery.js&quot;&gt;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;?php echo bloginfo('stylesheet_directory') ?&gt;</span></span>/pikachoose/js/pikachoose-min.js&quot;&gt;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">$(document).ready(</span>
<span style="color: #808080; font-style: italic;">function (){</span>
<span style="color: #808080; font-style: italic;">$(&quot;#pikame&quot;).PikaChoose();</span>
<span style="color: #808080; font-style: italic;">});</span>
&nbsp;
<span style="color: #808080; font-style: italic;">$(document).ready(</span>
<span style="color: #808080; font-style: italic;">function (){</span>
<span style="color: #808080; font-style: italic;">$(&quot;#pikame_user&quot;).PikaChoose({user_thumbs:true, show_prev_next:false});</span>
<span style="color: #808080; font-style: italic;">});</span>
&nbsp;
<span style="color: #808080; font-style: italic;">$(document).ready(</span>
<span style="color: #808080; font-style: italic;">function (){</span>
<span style="color: #808080; font-style: italic;">$(&quot;#pikame_compact&quot;).PikaChoose({user_thumbs:true, show_prev_next:false});</span>
<span style="color: #808080; font-style: italic;">});</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></td></tr></table></div>

<h2>3 &#8211; Edit Functions.php file</h2>
<p>Because we are using individual wordpress posts as the source for gallery thumbnails, we need a way for the gallery to pull the image urls from the posts.</p>
<p>Paste the code below into your theme&#8217;s functions.php file, or create a file by that name if it doesn&#8217;t exist. This will get the URL of the first image attached to a wordpress post. The code is based on WPRecipe&#8217;s orginal post <a href="http://www.wprecipes.com/how-to-get-the-first-image-from-the-post-and-display-it" target="_blank">here</a> and republished by <a href="http://www.problogdesign.com/wordpress/automatic-wordpress-thumbnail-without-custom-field/" target="_blank">Fikri Rasyid</a>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">// retreives image from the post</span>
<span style="color: #000000; font-weight: bold;">function</span> getImage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$more</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$more</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr_count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;img'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$start</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">&lt;=</span><span style="color: #000088;">$count</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$imgBeg</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;img'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$post</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imgBeg</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$imgEnd</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$postOutput</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imgEnd</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$image</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$postOutput</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$start</span><span style="color: #339933;">=</span><span style="color: #000088;">$imgEnd</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>  
&nbsp;
<span style="color: #000088;">$cleanF</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'src=&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">5</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cleanB</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span><span style="color: #000088;">$cleanF</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #000088;">$cleanF</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$imgThumb</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #000088;">$cleanF</span><span style="color: #339933;">,</span><span style="color: #000088;">$cleanB</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">stristr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'&lt;img'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$imgThumb</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #000088;">$more</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">//retreive image ends</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<h2>4 &#8211; The Gallery Code</h2>
<p>Insert the following code into your index.php, single.php, page.php or any of your other template files. This will set up the structure for the gallery that we will style later.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;pikachoose&quot;&gt;
&lt;ul id=&quot;pikame&quot;&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$postslist</span> <span style="color: #339933;">=</span> get_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'category=#&amp;numberposts=0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$postslist</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
setup_postdata<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;li&gt;&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> getImage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;/&gt;&lt;/li&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;/ul&gt;
&lt;/div&gt;</pre></td></tr></table></div>

<p>This code will set up the gallery to display the first image from every post in category ID #. It can be placed in or outside of the wordpress loop.</p>
<h2>5 &#8211; Link each image to its post</h2>
<p>In the case that you would like to provide a link at the base of the main image that links to original wordpress post, simply modify your code slightly.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;li&gt;&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> getImage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;/&gt;
&lt;span&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title_attribute<span style="color: #009900;">&#40;</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> the_title<span style="color: #009900;">&#40;</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;/span&gt;
&lt;/li&gt;</pre></td></tr></table></div>

<p>This will provide a clickable title in the caption area that is linked to the post.</p>
<p><img class="alignnone size-full wp-image-738" title="title" src="http://pippinspages.com/wp-content/uploads/2010/02/title.gif" alt="title" width="513" height="53" /></p>
<h2>6 &#8211; Write posts with images</h2>
<p>Create a category (and insert its ID # into the code in step 4) and fill it with posts that each contain an image. If more than one image is included in a post, only the first will be displayed as a thumbnail.</p>
<p>Once all is said and done, your result look something like this:</p>
<p><img class="alignnone size-full wp-image-739" title="Picture-2" src="http://pippinspages.com/wp-content/uploads/2010/02/Picture-2.gif" alt="Picture-2" width="513" height="433" /></p>
<p>In the above example, I have modified the original CSS that is included with the download slightly. To replicate mine exactly, use this CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.pikachoose</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">505px</span><span style="color: #00AA00;">;</span>margin<span style="color: #00AA00;">:</span><span style="color: #933;">10px</span> <span style="color: #993333;">auto</span> <span style="color: #933;">20px</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* This is the ul you have all your images in */</span>
<span style="color: #6666ff;">.pikachoose</span> ul<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">505px</span><span style="color: #00AA00;">;</span>margin<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>overflow<span style="color: #00AA00;">:</span><span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pikachoose</span> ul li<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>border<span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>padding<span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;;</span>margin<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">6px</span> <span style="color: #933;">4px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>position<span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>overflow<span style="color: #00AA00;">:</span><span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pikachoose</span> ul li div img<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>cursor<span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* this is the surroundner for all your elements. This is also the fake border around the main img and room for caption */</span>
<span style="color: #6666ff;">.pika_main</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">500px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">317px</span><span style="color: #00AA00;">;</span>display<span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/*sine we give it the fake border, you need to position the image a little. */</span>
<span style="color: #6666ff;">.pika_main_img</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>top<span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>left<span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_back_img</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>top<span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_subdiv</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>border<span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#F0F0F0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_subdiv</span> img<span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.pika_subdiv</span> a img<span style="color: #00AA00;">&#123;</span>  <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_caption</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">498px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">16px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">4px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>text-align<span style="color: #00AA00;">:</span><span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#F0F0F0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_caption</span> a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.pika_play</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>z-index<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>left<span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span><span style="color: #00AA00;">;</span>margin-<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">-25px</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>top<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_play</span> a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>margin-<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>cursor<span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>display<span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'play.png'</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #993333;">center</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_play</span> a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>margin-<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>cursor<span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>display<span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'pause.png'</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #993333;">center</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.pika_navigation</span> a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_navigation</span> a<span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">underline</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_navigation</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">padding-top</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>clear<span style="color: #00AA00;">:</span><span style="color: #993333;">both</span><span style="color: #00AA00;">;</span>text-align<span style="color: #00AA00;">:</span><span style="color: #993333;">center</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* if you want to 'hide' these jus make their height and width 1px */</span>
<span style="color: #6666ff;">.pika_prev_hover</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>top<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>left<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">456px</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'rewind.png'</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pika_next_hover</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>top<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>right<span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>height<span style="color: #00AA00;">:</span><span style="color: #933;">456px</span><span style="color: #00AA00;">;</span>width<span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>background<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'fastf.png'</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/pikachoose-gallery-wordpress-integration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>11 Stunning Header Designs</title>
		<link>http://pippinspages.com/design/11-stunning-header-designs/</link>
		<comments>http://pippinspages.com/design/11-stunning-header-designs/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:32:10 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://pippinsdesign.com/?p=718</guid>
		<description><![CDATA[I really love it when people take the time to design beautiful headers for their sites. Here are 11 that I find stunning.
Cats Who Code


Design ...]]></description>
			<content:encoded><![CDATA[<p>I really love it when people take the time to design beautiful headers for their sites. Here are 11 that I find stunning.</p>
<p><strong><a title="Cats Who Code" href="http://www.catswhocode.com/blog/" target="_blank">Cats Who Code</a></strong></p>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/catswhocode-e1267130817118.png"><img class="alignnone size-full wp-image-720" title="catswhocode" src="http://pippinspages.com/wp-content/uploads/2010/02/catswhocode-e1267130817118.png" alt="" width="486" height="188" /></a></p>
<p><span id="more-718"></span></p>
<h3><a title="Design Informer" href="http://designinformer.com/" target="_blank">Design Informer</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/design-informer-e1267130803890.png"><img class="alignnone size-full wp-image-721" title="design informer" src="http://pippinspages.com/wp-content/uploads/2010/02/design-informer-e1267130803890.png" alt="" width="485" height="188" /></a></p>
<h3><a title="Ecoki" href="http://ecoki.com/" target="_blank">Ecoki</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/ecoki-e1267130786100.png"><img class="alignnone size-full wp-image-722" title="ecoki" src="http://pippinspages.com/wp-content/uploads/2010/02/ecoki-e1267130786100.png" alt="" width="486" height="188" /></a></p>
<h3><a title="Sheriar Designs" href="http://manisheriar.com/" target="_blank">Sherier Designs</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/sherier-designs-e1267130770162.png"><img class="alignnone size-full wp-image-723" title="sherier designs" src="http://pippinspages.com/wp-content/uploads/2010/02/sherier-designs-e1267130770162.png" alt="" width="486" height="188" /></a></p>
<h3><a title="Simple Bits" href="http://simplebits.com/" target="_blank">Simple Bits</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/simplebits-e1267130756568.png"><img class="alignnone size-full wp-image-724" title="simplebits" src="http://pippinspages.com/wp-content/uploads/2010/02/simplebits-e1267130756568.png" alt="" width="486" height="188" /></a></p>
<h3><a title="Soh Tanaka" href="http://www.sohtanaka.com/" target="_blank">Soh Tanaka</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/sohtanaka-e1267130729233.png"><img class="alignnone size-full wp-image-725" title="sohtanaka" src="http://pippinspages.com/wp-content/uploads/2010/02/sohtanaka-e1267130729233.png" alt="" width="486" height="188" /></a></p>
<h3><a title="The Pixel" href="http://www.thepixel.com/blog/" target="_blank">The Pixel</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/the-pixel-e1267130713416.png"><img class="alignnone size-full wp-image-726" title="the pixel" src="http://pippinspages.com/wp-content/uploads/2010/02/the-pixel-e1267130713416.png" alt="" width="485" height="188" /></a></p>
<h3><a title="Think Deisgn" href="http://thinkdesignblog.com/" target="_blank">Think Design</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/think-design-e1267130685213.png"><img class="alignnone size-full wp-image-727" title="think design" src="http://pippinspages.com/wp-content/uploads/2010/02/think-design-e1267130685213.png" alt="" width="486" height="188" /></a></p>
<h3><a title="Tutorial 9" href="http://www.tutorial9.net/" target="_blank">Tutorial 9</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/tutorial9.png"><img class="alignnone size-full wp-image-728" title="tutorial9" src="http://pippinspages.com/wp-content/uploads/2010/02/tutorial9-e1267496831779.png" alt="" width="485" height="188" /></a></p>
<h3><a title="viget / extend" href="http://www.viget.com/extend" target="_blank">Viget / Extend</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/viget-e1267130601484.png"><img class="alignnone size-full wp-image-729" title="viget" src="http://pippinspages.com/wp-content/uploads/2010/02/viget-e1267130601484.png" alt="" width="486" height="188" /></a></p>
<h3><a title="Work Awesome" href="http://workawesome.com/" target="_blank">Work Awesome</a></h3>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/02/work-awesome-e1267130585566.png"><img class="alignnone size-full wp-image-730" title="work awesome" src="http://pippinspages.com/wp-content/uploads/2010/02/work-awesome-e1267130585566.png" alt="" width="486" height="188" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/design/11-stunning-header-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pos-T-Vac Medical</title>
		<link>http://pippinspages.com/portfolio/pos-t-vac-medical-2/</link>
		<comments>http://pippinspages.com/portfolio/pos-t-vac-medical-2/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 20:10:38 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=981</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-965" title="post-T-Vac Medical" src="http://pippinspages.com/wp-content/uploads/2010/03/postvac-286x196.png" alt="postvac medical" width="286" height="196" /></p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/portfolio/pos-t-vac-medical-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alexa Gould</title>
		<link>http://pippinspages.com/portfolio/alexa-gould-2/</link>
		<comments>http://pippinspages.com/portfolio/alexa-gould-2/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 03:55:18 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=934</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pippinspages.com/wp-content/uploads/2010/03/Picture-18.png"><img class="alignnone size-thumbnail wp-image-935" title="Picture 18" src="http://pippinspages.com/wp-content/uploads/2010/03/Picture-18-286x196.png" alt="" width="286" height="196" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/portfolio/alexa-gould-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
