<?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>Amanda Hawkins &#187; web design</title>
	<atom:link href="http://ahhh-design.com/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://ahhh-design.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 18:49:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Add &#8216;Pin it&#8217; to WordPress Theme</title>
		<link>http://ahhh-design.com/add-pinterest-button-to-wordpress-theme/</link>
		<comments>http://ahhh-design.com/add-pinterest-button-to-wordpress-theme/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 17:12:05 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[cool things]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=3783</guid>
		<description><![CDATA[Pinterest has a &#8216;Pin It&#8217; button available for websites in the &#8216;Goodies&#8216; section now. It&#8217;s much like the Twitter and...]]></description>
			<content:encoded><![CDATA[<p><img src="http://ahhh-design.com/wp-content/uploads/2011/08/button1.png" alt="" title="button" width="600" height="179" class="alignnone size-full wp-image-3826 colorbox-3783" /></p>
<p>Pinterest has a &#8216;Pin It&#8217; button available for websites in the &#8216;<a href="http://pinterest.com/about/goodies/">Goodies</a>&#8216; section now. It&#8217;s much like the Twitter and Facebook buttons you see EVERYwhere. <strong>I added a bit so you can use it in your WordPress theme.</strong></p>
<p><img src="http://ahhh-design.com/wp-content/uploads/2011/08/pinit.png" alt="" title="pinit" width="86" height="38" class="alignleft size-full wp-image-3803 colorbox-3783" />With the following code this button can go on your index, single or archive pages &#8211; anywhere the WordPress loop appears. It will automatically pull the first image from the post to be pinned and link to the post&#8217;s permalink. The title of the post along with the website url will appear in the description field but can be edited before it&#8217;s posted. </p>
<h3>Place this code in your template where you want the &#8216;Pin It&#8217; button to appear &#8211; it should be inside The Loop.</h3>
<pre class="brush: php; title: ; notranslate">
&lt;a href=&quot;http://pinterest.com/pin/create/button/?url=&lt;?php the_permalink() ?&gt;&amp;media=&lt;?php echo pinterest_image() ?&gt;&amp;description=&lt;?php the_title(); ?&gt; on &lt;?php bloginfo('url'); ?&gt;&quot; class=&quot;pin-it-button&quot; count-layout=&quot;horizontal&quot;&gt;Pin It&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://assets.pinterest.com/js/pinit.js&quot;&gt;&lt;/script&gt;
</pre>
<h3>Put the following code in your functions.php file.</h3>
<pre class="brush: php; title: ; notranslate">
function pinterest_image() {
  global $post, $posts;
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/&lt;img.+src=[\'&quot;]([^\'&quot;]+)[\'&quot;].*&gt;/i', $post-&gt;post_content, $matches);
  $first_img = $matches [1] [0];

  if(empty($first_img)){ //Defines a default image
    $first_img = &quot;/images/default.jpg&quot;;
  }
  return $first_img;
}
</pre>
<p>You can change <strong>/images/default.jpg</strong> to whatever you&#8217;d like. This image will be pinned if there&#8217;s not an image in the post. </p>
<p><strong>Be really careful in your functions.php file, it&#8217;s a little touchier than what you might be used to. The first thing I ever broke in one was putting a space after the closing <em>?></em> &#8211; it&#8217;ll break your whole site! Always back up your files before you start changing things.</strong></p>
<h3>Easy as that, happy pinning!</h3>
<p><small>P.S. Before you ask a question about your WordPress theme please do a quick google or <a target="_blank" href="http://codex.wordpress.org/">codex</a> search &#8211; If you still can&#8217;t figure it out ask away and I&#8217;ll try my best to help when I can!</small></p>
<blockquote><p>
.</p>
<h1>UPDATE!</h1>
<p>Due to Pinterest&#8217;s huge popularity now, there are <a href="http://wordpress.org/extend/plugins/search.php?q=pinterest">tons of plugins</a> available that will do this for you. I just did a quick search and  <a href="http://wordpress.org/extend/plugins/pinterest-pin-it-button/">this</a> one looks good. WP Beginner also shows a <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/">different method</a> that doesn&#8217;t involve the function file.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/add-pinterest-button-to-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Coming soon&#8230;</title>
		<link>http://ahhh-design.com/coming-soon/</link>
		<comments>http://ahhh-design.com/coming-soon/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 00:35:07 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=2812</guid>
		<description><![CDATA[Somebody needs to get busy! EEK! On your marks, get set&#8230; 3 days, 16 hours, 28 minutes, 32 seconds until...]]></description>
			<content:encoded><![CDATA[<p><em>Somebody</em> needs to get busy! EEK! On your marks, get set&#8230; 3 days, 16 hours, 28 minutes, 32 seconds until the launch of <a href="http://www.birdthemes.com">birdthemes.com</a> Follow <a href="http://twitter.com/birdthemes">@birdthemes</a> on twitter for updates!<br />
<blockquote><strong>Cozy, quirky and weathered WordPress themes for small businesses, individuals and the soon-to-be married!</strong></p></blockquote>
<p>Sneak Peak:<br />
<img src="http://ahhh-design.com/wp-content/uploads/2010/04/bird.jpeg" alt="" title="bird" width="600" height="315" class="alignnone size-full wp-image-2826 colorbox-2812" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/coming-soon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ready, set, wireframe</title>
		<link>http://ahhh-design.com/ready-set-wireframe/</link>
		<comments>http://ahhh-design.com/ready-set-wireframe/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 05:46:51 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=1974</guid>
		<description><![CDATA[Website Stencil Kit I got the above stencil from Sam for christmas, awesome! Researching wireframing techniques now, trying to get...]]></description>
			<content:encoded><![CDATA[<p><img src="http://ahhh-design.com/wp-content/uploads/2009/12/01_3.jpeg" alt="" title="Website Stencil Kit" width="600" height="297" class="alignnone size-full wp-image-1975 colorbox-1974" /> <a href="http://www.uistencils.com/website-stencil-kit.html">Website Stencil Kit</a></p>
<p><img src="http://ahhh-design.com/wp-content/uploads/2009/12/4116514187_55d4392278_o1.jpeg" alt="JAWS wireframe" title="JAWS wireframe" width="300" height="489" class="alignleft size-full wp-image-1983 colorbox-1974" /></p>
<p>I got the above stencil from Sam for christmas, awesome! Researching wireframing techniques now, trying to get in web designing mode for a top secret project coming up in the next couple of months.  The <a href="http://www.flickr.com/photos/dzovan/4116514187/">JAWS wireframe</a> (left) is the most inspiring so far, by a four year old!</p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/ready-set-wireframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress theme updates</title>
		<link>http://ahhh-design.com/wordpress-theme-updates/</link>
		<comments>http://ahhh-design.com/wordpress-theme-updates/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 07:15:07 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=1697</guid>
		<description><![CDATA[Made a few little changes to Paper, my WordPress theme &#8211; Updates include cleaner code, better looking comments, new graphics...]]></description>
			<content:encoded><![CDATA[<p>Made a few little changes to Paper, my WordPress theme &#8211; </p>
<p>Updates include cleaner code, better looking comments, new graphics and formatting on the date, tags and category, moved sidebar to footer for better SEO and a darker shade of gray in the background.</p>
<p><a href="http://www.ahhh-design.com/wp_templates/paper/"><img src="http://ahhh-design.com/wp-content/uploads/2009/11/Paper.7-a-wp-theme.png" alt="Paper.7- a wp theme" title="Paper.7- a wp theme" width="600" height="609" class="alignnone size-full wp-image-1703 colorbox-1697" /><br />
<h3>View the demo and download here</h3>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/wordpress-theme-updates/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Launch: littlebirdllc.com</title>
		<link>http://ahhh-design.com/launch-littlebirdllc-com/</link>
		<comments>http://ahhh-design.com/launch-littlebirdllc-com/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 17:59:33 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[little bird]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=853</guid>
		<description><![CDATA[I&#8217;ve been working on littlebirdllc.com since last fall. Designed 10 different versions, coded about 6, started in Drupal and ended...]]></description>
			<content:encoded><![CDATA[<p><img src="http://littlebirdllc.com/wp-content/uploads/2009/07/late.png" alt="late" title="late" width="590" height="57" class="alignnone size-full wp-image-802 colorbox-853" /></p>
<p><strong>I&#8217;ve been working on <a href="http://www.littlebirdllc.com">littlebirdllc.com</a> since last fall.</strong> Designed 10 different versions, coded about 6, started in <a href="http://drupal.org/">Drupal</a> and ended with <a href="http://wordpress.org/">WordPress.</a> Do all designers have such a hard time designing their own business sites? It&#8217;s just never right, never cool enough, never finished. I decided on Saturday that this had gone on TOO long. Imagine my surprise when I actually came up with a design I liked right after deciding I just wanted to get something up? <strong>Design is funny like that. </strong> It&#8217;s still a work in progress, but it&#8217;s <em>something.</em> Thanks for reading! </p>
<p><img src="http://littlebirdllc.com/wp-content/uploads/2009/07/Little-Bird-blog-590.png" alt="Little Bird blog 590" title="Little Bird blog 590" width="590" height="332" class="alignnone size-full wp-image-800 colorbox-853" /></p>
<p><img src="http://ahhh-design.com/wp-content/uploads/2009/07/Little-Bird-LLC-590.png" alt="Little Bird LLC 590" title="Little Bird LLC 590" width="590" height="654" class="alignnone size-full wp-image-856 colorbox-853" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/launch-littlebirdllc-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme, Paper.1</title>
		<link>http://ahhh-design.com/free-wordpress-theme-paper1/</link>
		<comments>http://ahhh-design.com/free-wordpress-theme-paper1/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 20:31:17 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[freebies]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=302</guid>
		<description><![CDATA[I&#8217;ve been using WordPress for a year or two now and finally decided to create a free theme! It&#8217;s fun...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://www.wordpress.org">WordPress</a> for a year or two now and finally decided to create a free theme! It&#8217;s fun and simple, one that artists and craftsters might enjoy. </p>
<p><a href="http://www.ahhh-design.com/wp_templates/paper/"><center><img class="colorbox-302"  src="http://ahhh-design.com/wp_templates/paper/wp-content/uploads/2009/01/wp_heading.png" alt="Paper.1" title="Paper.1" border="1"/></center><br />
<h3>View and download the theme here</h3>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/free-wordpress-theme-paper1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS Layout</title>
		<link>http://ahhh-design.com/css-layout/</link>
		<comments>http://ahhh-design.com/css-layout/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 03:39:02 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/?p=153</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://ahhh-design.com/wp-content/uploads/2008/09/css.jpg" alt="" title="css" width="600" class="alignnone size-full wp-image-154 colorbox-153" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/css-layout/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8216;wed&#8217;site</title>
		<link>http://ahhh-design.com/wedsite/</link>
		<comments>http://ahhh-design.com/wedsite/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 23:48:05 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://ahhh-design.com/2008/03/28/wedsite/</guid>
		<description><![CDATA[I spent about a million hours working on our wedsite, I&#8217;ve realized in the last couple of weeks that I...]]></description>
			<content:encoded><![CDATA[<p><img class='picleft colorbox-89' src='http://ahhh-design.com/wp-content/uploads/2008/03/s_a_wedding.jpg' alt='wedsite' /> </p>
<p>I spent about a million hours working on our wedsite, I&#8217;ve realized in the last couple of weeks that I might like making blogs more than I am like writing in them. </p>
]]></content:encoded>
			<wfw:commentRss>http://ahhh-design.com/wedsite/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

