<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>website design &#8211; Dabbled</title>
	<atom:link href="https://dabbled.org/category/website-design/feed/" rel="self" type="application/rss+xml" />
	<link>https://dabbled.org</link>
	<description>Experiments in Art, Craft, and Food - an archive</description>
	<lastBuildDate>Mon, 16 Jul 2012 17:09:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">145231836</site>	<item>
		<title>New Random Post Photo Archive! (and how to build it)</title>
		<link>https://dabbled.org/new-random-post-photo-archive-and-how-to-build-it/</link>
					<comments>https://dabbled.org/new-random-post-photo-archive-and-how-to-build-it/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Mon, 16 Jul 2012 17:09:10 +0000</pubDate>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=7437</guid>

					<description><![CDATA[<p><a href="http://dabbled.org/photo-archive"></a></p>
<p>So I was playing around with how to display archives of all the posts from the past 5 years or so here on Dabbled, and came up with this idea:  It&#8217;s a photo based archive that pulls a random selection of posts from a bunch of project related categories.  Just reload to see a different selection!   It was really fun to be reminded of old projects, interviews, and guest posts.</p>
<p><strong>Go check it out: <a href="http://dabbled.org/photo-archive">48 Random Dabbled Posts from the Past</a></strong></p>
<p>I have so much fun just reloading it and seeing what I get!&#8230; <a href="https://dabbled.org/new-random-post-photo-archive-and-how-to-build-it/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p><a href="http://dabbled.org/photo-archive"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-7439" title="Dabbled - Random Photo Archive" src="http://dabbled.org/wp-content/uploads/2012/07/Dabbled-Random-Photo-Archive1-585x265.png" alt="A page that pulls posts randomly and displays with photo" width="585" height="265" srcset="https://dabbled.org/wp-content/uploads/2012/07/Dabbled-Random-Photo-Archive1-585x265.png 585w, https://dabbled.org/wp-content/uploads/2012/07/Dabbled-Random-Photo-Archive1-285x129.png 285w, https://dabbled.org/wp-content/uploads/2012/07/Dabbled-Random-Photo-Archive1.png 947w" sizes="(max-width: 585px) 100vw, 585px" /></a></p>
<p>So I was playing around with how to display archives of all the posts from the past 5 years or so here on Dabbled, and came up with this idea:  It&#8217;s a photo based archive that pulls a random selection of posts from a bunch of project related categories.  Just reload to see a different selection!   It was really fun to be reminded of old projects, interviews, and guest posts.</p>
<p><strong>Go check it out: <a href="http://dabbled.org/photo-archive">48 Random Dabbled Posts from the Past</a></strong></p>
<p>I have so much fun just reloading it and seeing what I get!</p>
<p>For how to make something like this for your own blog, read on..</p>
<p><span id="more-7437"></span></p>
<h2>How to create a random photo archive page (WordPress)</h2>
<p>So, to build a page like this for your own site:</p>
<p>First, you&#8217;ll need to create a page template for it.  Easiest way to do that is to take your &#8216;page.php&#8217; template, save it as photoarchive.php, then add to the very top:</p>
<pre>&lt;?php 
/* 
Template Name: photoarchive
*/ 
?&gt;</pre>
<p>Next your going to be replacing the content section of the page with a new query.  Go down to where you&#8217;re pulling the title of the page (look for <em>&lt;?php the_title(); ?&gt;</em>).  You&#8217;ll want to put your new query loop under that.  Get rid of the section that has <em>the_content(); .</em></p>
<p>The query:</p>
<pre>&lt;?php global $wp_query;
 $args=array(
 'orderby' =&gt; 'rand',
 'cat' =&gt; '186,134,148,163,179,173,174,183,199,174,665,4',
 'posts_per_page' =&gt; 48 
 );</pre>
<pre>$new_query = null;
$new_query = new WP_Query($args);</pre>
<pre>while ($new_query-&gt;have_posts()) : $new_query-&gt;the_post(); ?&gt;</pre>
<pre><em>[html to display the photos goes here]</em></pre>
<pre>&lt;?php
endwhile;
wp_reset_postdata(); ?&gt;</pre>
<p>This is basically pulling 48 posts, chosen at random, from the categories listed (by category number).</p>
<p>Next you&#8217;ll need to add the html to display the thumbnail photos from each post, along with the title and a link back.</p>
<pre>&lt;!-- begin post --&gt;
 &lt;div class="relposts"&gt;
<span style="color: #008080;"> &lt;?php /* Image processing. checks if post thumbnail, then if Image attribute is set,</span>
<span style="color: #008080;">else it takes the first attached image*/ ?&gt;</span></pre>
<pre><span style="color: #008080;">&lt;?php $values = get_post_custom_values("Image"); ?&gt; </span>

<span style="color: #008080;"> &lt;?php if(has_post_thumbnail()) { ?&gt;</span>
<span style="color: #008080;"> &lt;div&gt;</span>
<span style="color: #008080;"> &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_post_thumbnail('thumbnail'); ?&gt;&lt;/a&gt;</span>
<span style="color: #008080;"> &lt;/div&gt;</span>

<span style="color: #008080;"> &lt;?php } elseif (isset($values[0])) { ?&gt; </span>

<span style="color: #008080;"> &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Link to &lt;?php the_title(); ?&gt;"&gt;&lt;div&gt;</span>
<span style="color: #008080;"> &lt;img src="&lt;?php echo bloginfo('template_url'); ?&gt;/scripts/timthumb.php?src=/ &lt;?php $values = get_post_custom_values("Image"); echo $values[0]; ?&gt; &amp;w=150&amp;h=150&amp;zc=1&amp;q=100" alt="&lt;?php the_title(); ?&gt;" class="center" width="150px" height="150px" /&gt;&lt;/a&gt;</span>
<span style="color: #008080;"> &lt;/div&gt;</span>

<span style="color: #008080;"> &lt;?php } else { ?&gt;</span>
<span style="color: #008080;"> &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;</span>
<span style="color: #008080;"> &lt;div&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php attachment_image ($post-&gt;ID, 'thumbnail', 'alt="' . $post-&gt;post_title . '"'); ?&gt;&lt;/a&gt;&lt;/div&gt;</span>
<span style="color: #008080;"> &lt;?php } ?&gt;</span>

<span style="color: #008080;"> &lt;?php /* End Image processing. */ ?&gt;</span>
 &lt;div class="bottom reltext"&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;
&lt;?php the_title(); ?&gt;&lt;/a&gt; &lt;/div&gt;
 &lt;/div&gt;
 &lt;!-- end post --&gt;</pre>
<p>The whole thing is wrapped in a class called relposts (because i developed the style for related posts thumbnailing) .</p>
<p>Most of the above html (the teal stuff) handles getting the images (I really should pull that out into a function sometime).  Basically it says if the post has a &#8216;featured image&#8217; then get it.  If it doesn&#8217;t, then look at see if the Image custom field is set, and grabs that url (because yes my blog has been around for a while and that was how timthumb handled thumbnailing- you can delete this!).  Then if not, then get the first attached image (which is calling a function called attachment_image to get that info).   <a href="http://codex.wordpress.org/Function_Reference/get_children#Show_the_first_image_associated_with_the_post" target="_blank">Here is a function you can use to get the first attached image.</a></p>
<p>One note, every post should have a photo, so I didn&#8217;t add a default image option if no image was found, but I&#8217;d recommend adding that to your IF statement.</p>
<p>After we get the image, we&#8217;re just getting the post title/link (in it&#8217;s own div called reltext).</p>
<p>Then we use css to stack the text on top of the photo.  Here&#8217;s the relevant stuff:</p>
<pre>.relposts {
float:left;
position:relative;
width: 160px;
margin-bottom: 2px;</pre>
<pre>}</pre>
<pre>.relposts .reltext {
position: absolute;
top: 0px;
left: 0px;
width: 150px;
background-color: rgba(255, 255, 255, 0.6);
padding: 4px;
}
.bottom {
top:auto!important;
bottom: 0px!important;</pre>
<pre>}</pre>
<p>And that&#8217;s about it.  Create a new Page called Random Photo Archive, and set it to your new template!</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/new-random-post-photo-archive-and-how-to-build-it/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7437</post-id>	</item>
		<item>
		<title>More cool Pinterest Tricks: Adding a feed of things pinned from your website</title>
		<link>https://dabbled.org/more-cool-pinterest-tricks-adding-a-feed-of-things-pinned-from-your-website/</link>
					<comments>https://dabbled.org/more-cool-pinterest-tricks-adding-a-feed-of-things-pinned-from-your-website/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Fri, 13 Jul 2012 20:54:25 +0000</pubDate>
				<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[blog design]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[widgets]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=7398</guid>

					<description><![CDATA[<p>The other day I talked about how to<a href="http://dabbled.org/2012/07/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog.html" target="_blank"> embed pins from one of your Pin Boards</a> on Pinterest in a post.  So this got me thinking&#8230; what other cool WordPress tricks can we do?  (Yes, this is another post for you bloggers out there!)</p>
<p>I love go out to look and see what items on Dabbled people are pinning on Pinterest.  I had no idea some of my old posts had gotten rediscovered via Pinterest till I noticed some of them had a bunch of pins.  &#8230; <a href="https://dabbled.org/more-cool-pinterest-tricks-adding-a-feed-of-things-pinned-from-your-website/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>The other day I talked about how to<a href="http://dabbled.org/2012/07/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog.html" target="_blank"> embed pins from one of your Pin Boards</a> on Pinterest in a post.  So this got me thinking&#8230; what other cool WordPress tricks can we do?  (Yes, this is another post for you bloggers out there!)</p>
<figure id="attachment_7405" aria-describedby="caption-attachment-7405" style="width: 388px" class="wp-caption alignright"><img decoding="async" loading="lazy" class="size-full wp-image-7405" title="pinterestbox" src="http://dabbled.org/wp-content/uploads/2012/07/pinterestbox.png" alt="" width="388" height="380" srcset="https://dabbled.org/wp-content/uploads/2012/07/pinterestbox.png 388w, https://dabbled.org/wp-content/uploads/2012/07/pinterestbox-285x279.png 285w, https://dabbled.org/wp-content/uploads/2012/07/pinterestbox-50x50.png 50w" sizes="(max-width: 388px) 100vw, 388px" /><figcaption id="caption-attachment-7405" class="wp-caption-text">This is just an image &#8211; the actual widget is over in the sidebar &#8211;&gt;</figcaption></figure>
<p>I love go out to look and see what items on Dabbled people are pinning on Pinterest.  I had no idea some of my old posts had gotten rediscovered via Pinterest till I noticed some of them had a bunch of pins.  If you have a website, and you want to know what items on your site are getting pinned, you just need to go to http://pinterest.com/source/yourblogname.com/ (in my case <a href="http://pinterest.com/source/dabbled.org/">http://pinterest.com/source/dabbled.org/</a>) .</p>
<p>So I was thinking, wouldn&#8217;t it be cool to have a sidebar widget or something where I could highlight Dabbled posts that are popular right now on Pinterest?  Now, it&#8217;s pretty easy to add a widget to show your own posts<em> (as we discussed, those have an RSS feed, and there are many plugins around to make that super simple)</em>.  But there is no feed (as far as I can tell) for the /source/ page.  So we have a two step process:  First, we need to <a href="http://feed43.com/dabbled-on-pinterest.xml" target="_blank">build a feed</a>, and second, we need to display in our sidebar. And, if you&#8217;ll look to your right, you&#8217;ll see it in the sidebar, under the &#8220;Past Projects&#8221; list.</p>
<h2>Building an RSS Feed from your blog &#8220;source&#8221; page on Pinterest</h2>
<p>I got a ton of help on this from two posts:  <a href="http://www.jesseluna.com/2012/02/20/how-to-add-a-pinterest-pin-board-to-your-wordpress-blog/">How to Add a Pinterest Pin Board to Your WordPress Blog by JesseLuna</a> and <a href="http://mashable.com/2012/03/14/pinterest-track-content/">How to Track Your Website’s Content on Pinterest</a> at Mashable.   Neither was doing exactly what I wanted to do, but together, they helped a bunch. The <a href="http://www.jesseluna.com/2012/02/20/how-to-add-a-pinterest-pin-board-to-your-wordpress-blog/" target="_blank">JesseLuna post</a> has a good step by step, so I&#8217;m not going to recreate the whole thing here.  Basically you go to <a href="http://feed43.com/" target="_blank">Feed43</a> to create a custom feed. When you get to Step 2: Define extraction rules, you can leave Global blank, then enter the following code in the Item Search Pattern field:</p>
<pre>&lt;a href="http://pinterest.com/pin/{%}" class="PinImage ImgLink"&gt;{*}
&lt;img src="{%}" alt="{%}"{*}
&lt;p class="description"&gt;{%}&lt;/p&gt;{*}
&lt;a href="{%}" title="{%}" class="ImgLink"&gt;{*}</pre>
<p>You&#8217;re basically just pulling out the information you&#8217;ll need with this. When you get to the RSS Item Properties section, do something like this: Item Title Template*: [?]</p>
<pre>{%3} Pinned by {%6}</pre>
<p>Item Link Template*: [?]</p>
<pre>http://pinterest.com/pin/{%1}</pre>
<p>Content:</p>
<pre>&lt;a href="http://pinterest.com/pin/{%1}"&gt;&lt;img src="{%2}" alt="{%3}" /&gt;&lt;/a&gt;&lt;br/&gt;
Shared by &lt;a href="{%5}"&gt;{%6}&lt;/a&gt;&lt;br/&gt;
[&lt;a href="http://pinterest.com/source/dabbled.org/"&gt;All Dabbled.org Pins&lt;/a&gt;]</pre>
<p>Note that the last line of the content is just a hard coded link back to the /source page.  You can leave that out, or change it to your own source page.</p>
<p>If you&#8217;ve done everything right (and again, follow the directions on the other blog, just use my info above for pulling from the /source/ page), you&#8217;ll have a spiffy homemade feed, suitable for putting in your feedreader (if you&#8217;re obsessive about when people pin your posts) or, as we&#8217;re going to do, add to a sidebar widget.</p>
<h2>Creating a sidebar widget for your new feed</h2>
<p><a href="http://dabbled.org/wp-content/uploads/2012/07/Widgets-‹-Dabbled-—-WordPress.png"><img decoding="async" loading="lazy" class="alignright size-full wp-image-7402" title="anyfeed slideshow widget settings" src="http://dabbled.org/wp-content/uploads/2012/07/Widgets-‹-Dabbled-—-WordPress.png" alt="" width="279" height="442" /></a>Now, if you don&#8217;t care about photos, and just want a list of items, you can use the built in RSS widget in WordPress.  Easy Peasy.  In my case, I wanted to show the photos of the Pinned items, with a link back to the Pin itself, as pinned by the reader.</p>
<p>My solution was the <a href="http://wordpress.org/extend/plugins/anyfeed-slideshow/">Anyfeed Slideshow</a> plugin for WordPress.  The<a href="http://wordpress.org/extend/plugins/super-simple-pinterest-plugin/" target="_blank"> Super-Simple Pinterest Widget</a> might also work for your needs, the format just wasn&#8217;t what I was looking for.  But either will pull in images and titles from your newly created feed.  (Have you tried something else? Leave a comment!)</p>
<p>For AnyFeed Slideshow, I just installed it, and configured it on the Widgets page adding my own title and the feed URL I got from feed43.com.</p>
<p>You can play around with the display options, but the main setting I changed was checking off the following:</p>
<ul>
<li>Show Navigation?</li>
<li>Show Titlebar?</li>
<li>Permanent Titlebar?</li>
</ul>
<p>I did notice that I could only have one feed widget on a page.  Trying to add a second one on the same page to show Foodwhirl.com Pins didn&#8217;t work.</p>
<h2>So, wanna see it?</h2>
<p style="text-align: left;">Well, it&#8217;s over on the sidebar now &#8211;&gt;</p>
<p style="text-align: left;">In addition to the slideshow widget, I added a couple of Buttons (see below), and some explanatory text in a second text widget.  If you&#8217;ve pinned something on Dabbled recently, you&#8217;ll see yourself in the box!  It pulls the last 30 or so Pins, and I&#8217;m not sure how quickly it updates.</p>
<div class="pinterests"><a href="http://pinterest.com/source/dabbled.org/"><img decoding="async" loading="lazy" title="See what people have pinned from Dabbled.org" src="http://dabbled.org/wp-content/uploads/2012/07/dabbledpinterest.png" alt="" width="138" height="26" /></a><a href="http://pinterest.com/dorsner/"><img decoding="async" loading="lazy" title="Follow Dot on Pinterest" src="http://dabbled.org/wp-content/uploads/2012/07/followmepinterest.png" alt="" width="152" height="26" /></a></div>
<div class="pinterests">All in all, a cool way to keep track of who likes your stuff, and what stuff they like, and to showcase them on your blog!</div>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/more-cool-pinterest-tricks-adding-a-feed-of-things-pinned-from-your-website/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7398</post-id>	</item>
		<item>
		<title>Summer Inspirations (and how to embed a Pinterest board on your wordpress blog)</title>
		<link>https://dabbled.org/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog/</link>
					<comments>https://dabbled.org/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 12:22:24 +0000</pubDate>
				<category><![CDATA[inspirations]]></category>
		<category><![CDATA[Seasonal/Holiday]]></category>
		<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[pin board]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=7372</guid>

					<description><![CDATA[<p>I was playing around with Pinterest today (note the neat &#8216;Pin It&#8217; stuff to make it easy to pin Dabbled stuff!) because I was thinking it could be cool to use Pinterest as a way to create inspiration link posts (like I used to do all the time when I had more time to devote to surfing my feed reader).  So with a little bit of research I came up with a cool and easy way to do just that.  &#8230; <a href="https://dabbled.org/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>I was playing around with Pinterest today (note the neat &#8216;Pin It&#8217; stuff to make it easy to pin Dabbled stuff!) because I was thinking it could be cool to use Pinterest as a way to create inspiration link posts (like I used to do all the time when I had more time to devote to surfing my feed reader).  So with a little bit of research I came up with a cool and easy way to do just that.  So first enjoy the Pins below, then after that, look below to see how to easy embed Pinterest pin boards into your blog posts!</p>
<h2>Summer Inspirations &#8211; Cool things to do this summer&#8230;</h2>
<p>[prw username=&#8221;dorsner&#8221; boardname=&#8221;summer-inspirations&#8221; maxfeeds=&#8221;9&#8243; divname=&#8221;myList&#8221; printtext=&#8221;0&#8243; target=&#8221;newwindow&#8221; useenclosures=&#8221;yes&#8221; thumbwidth=&#8221;170&#8243; thumbheight=&#8221;170&#8243; showfollow=&#8221;medium&#8221;]</p>
<p>Direct Links: <a href="http://dabbled.org/2010/08/how-to-make-citrus-vodka.html" target="_blank">Citrus Vodka</a> |   <a href="http://www.sugarfreemom.com/recipes/personal-sized-baked-oatmeal-with-individual-toppings-gluten-free-diabetic-friendly/" target="_blank">Personal sized baked oatmeal</a>  | <a href="http://calebandshelley.blogspot.com/2012/04/little-monster-birthday-party.html" target="_blank">Little Monster Birthday Party &#8211; Watermelon Fruit Monster</a> | <a href="http://pizzazzerie.com/diy/pop-rocks-rimmed-cocktails/" target="_blank">Pop Rocks Rimmed Cocktails!</a>  | <a href="http://littleinspiration.com/2012/06/oreo-popsicles-recipe.html" target="_blank">Oreo Popsicle Recipe</a> | <a href="http://www.instructables.com/id/Vanilla-Cookie-Dough-Bracelet/" target="_blank">Edible Cookie Dough Bracelet!</a> | <a href="http://blog.creativekismet.com/2012/06/15/beaded-crocheted-bracelet-tutorial/" target="_blank">Beaded Crochet Bracelet Tutorial</a> | <a href="http://modmischief.blogspot.com/2012/06/backyard-garden-party-bbq.html" target="_blank">Strawberry chocolate jello shots</a> |  <a href="http://foodwhirl.com/sweet-treats/irish-car-bomb-ice-cream-sundae" target="_blank">Guiness Ice Cream Car Bomb Sundae</a></p>
<h2>How to add a Pinterest Pin Board to a Blog Post (WP)</h2>
<p><a href="http://dabbled.org/wp-content/uploads/2012/07/summer-inspirations.png"><img decoding="async" loading="lazy" class="alignright size-medium wp-image-7393" title="How to Embed a Pinterest Pin Board in WordPress Blog Post" src="http://dabbled.org/wp-content/uploads/2012/07/summer-inspirations-285x278.png" alt="How to Embed a Pinterest Pin Board in WordPress Blog Post" width="285" height="278" srcset="https://dabbled.org/wp-content/uploads/2012/07/summer-inspirations-285x278.png 285w, https://dabbled.org/wp-content/uploads/2012/07/summer-inspirations-585x570.png 585w, https://dabbled.org/wp-content/uploads/2012/07/summer-inspirations-50x50.png 50w, https://dabbled.org/wp-content/uploads/2012/07/summer-inspirations.png 621w" sizes="(max-width: 285px) 100vw, 285px" /></a>This was not overly obvious, and required a bit of research, but basically there is an RSS feed for any of your pin boards on Pinterest.  Example: <a href="http://pinterest.com/dorsner/summer-inspirations/">http://pinterest.com/dorsner/summer-inspirations/</a> board&#8217;s RSS feed is <a href="http://pinterest.com/dorsner/summer-inspirations/rss" target="_blank">http://pinterest.com/dorsner/summer-inspirations/rss</a> . Once you know that you have a feed, you&#8217;re halfway there, and there are probably multiple ways to handle it.</p>
<p>I took the quick way out and snagged the <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/" target="_blank">Pinterest RSS Widget plugin</a> so I didn&#8217;t have to reinvent the wheel.   Conveniently enough, not only does the plugin allow you to add a widget to your sidebar with any Pinterest feed, they also include a shortcode that makes it super easy to embed the pin board directly into a post.</p>
<p>So for the board above I used the following shortcode &#8211; replace the curly brackets } with square brackets ], obviously.  The syntax is pretty self explanatory, but the explanation for each field is <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/faq/" target="_blank">here</a>.  The username is your Pinterest name, the boardname is the name of the board.  Max feeds is the number of posts you want to show.   The divname is for styling (I didn&#8217;t worry about that here).  Printtext determines if you want to include text- I didn&#8217;t.  I set the thumbwidth/height to 170 to make 3 across, nicely spaced.</p>
<pre>{prw username="dorsner" boardname="summer-inspirations" maxfeeds="9"</pre>
<pre>divname="myList" printtext="0" target="newwindow" useenclosures="yes"</pre>
<pre>thumbwidth="170" thumbheight="170" showfollow="medium"}</pre>
<p>And that&#8217;s really all there is to it.  It was easy to do, so I will probably do it again sometime, as a good way to collect links.  I know there are mixed feelings in the crafty blogging world about Pinterest, and I&#8217;ll admit I haven&#8217;t really done much with it yet, but I do think it does have some excellent potential.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/summer-inspirations-and-how-to-embed-a-pinterest-board-on-your-wordpress-blog/feed/</wfw:commentRss>
			<slash:comments>16</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7372</post-id>	</item>
		<item>
		<title>Torn Page Tutorial Part 2: Put a cool graphic on your 404 page (WordPress).</title>
		<link>https://dabbled.org/torn-page-tutorial-part-2-put-a-cool-graphic-on-your-404-page-wordpress/</link>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Mon, 29 Aug 2011 16:36:07 +0000</pubDate>
				<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[404 page]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6796</guid>

					<description><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404dab.png"></a></p>
The code
<p>In part 1 we created a cool graphic to put on your 404 page. <a href="http://dabbled.org/2011/08/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop.html" target="_blank"> (Part 1: Photoshop tutorial to make a &#8220;torn out&#8221; image)</a></p>
<p>Now, you need to integrate it into your 404 page, which is the page that comes up when a page is not found on the website.  Again, I&#8217;ll be using the 404 page for <a href="http://foodwhirl.com" target="_blank">Foodwhirl.com</a> in this tutorial.</p>
<p>This tutorial will be written from a WordPress point of view, but I would assume if you have a bit of knowledge, you could use similar steps on any blogging platform. &#8230; <a href="https://dabbled.org/torn-page-tutorial-part-2-put-a-cool-graphic-on-your-404-page-wordpress/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404dab.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6799" title="404dab" src="http://dabbled.org/wp-content/uploads/2011/08/404dab-500x452.png" alt="" width="500" height="452" srcset="https://dabbled.org/wp-content/uploads/2011/08/404dab-500x452.png 500w, https://dabbled.org/wp-content/uploads/2011/08/404dab-275x248.png 275w, https://dabbled.org/wp-content/uploads/2011/08/404dab.png 789w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<h2>The code</h2>
<p>In part 1 we created a cool graphic to put on your 404 page. <a href="http://dabbled.org/2011/08/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop.html" target="_blank"> (Part 1: Photoshop tutorial to make a &#8220;torn out&#8221; image)</a></p>
<p>Now, you need to integrate it into your 404 page, which is the page that comes up when a page is not found on the website.  Again, I&#8217;ll be using the 404 page for <a href="http://foodwhirl.com" target="_blank">Foodwhirl.com</a> in this tutorial.</p>
<p>This tutorial will be written from a WordPress point of view, but I would assume if you have a bit of knowledge, you could use similar steps on any blogging platform.  Also, there are multiple ways to accomplish this, I just tried to come up with a way that is easy to explain and doesn&#8217;t require a ton of knowledge.  You should be able to do this without being an expert at getting into the code on WordPress, but be aware this does require some messing with code.</p>
<p>This is also a great tutorial if you&#8217;ve always wanted to know a little more about how to change your wordpress theme a bit.</p>
<p><em>If you&#8217;re going to be messing around with your CSS, a great tool to have is <a href="http://getfirebug.com/" target="_blank">Firebug</a>.   You install it on Firefox and then right click and choose Inspect Element.  That lets you view and change (temporarily) your css on the fly. </em></p>
<p><em>I also recommend you install an FTP program, like Filezilla, or Fireftp, to make it easy to upload files.</em></p>
<h2>Part 2:  Adding the graphic to your website 404 Page</h2>
<h3>Get set up</h3>
<p>First off, take a look at your current 404 page.  If you want to know what it looks like, just type your web address, slash a page that doesn&#8217;t exist.  So for example:  <a href="http://Dabbled.org/sldalkgj" target="_blank">http://Dabbled.org/sldalkgj</a> will take you to Dabbled&#8217;s 404 page (which is what inspired this tutorial!) .</p>
<p><em>Note: If you don&#8217;t get a Page Not Found when you try this on your own site (like the homepage just reloads) then you&#8217;re missing your 404.php template in your WordPress theme.</em></p>
<p>So, we&#8217;ll need access to 2 files to fancy up our page:  style.css and 404.php.  You&#8217;ll find them in the wp-content/themes/<em>yourthemename</em> directory.   I recommend any time you&#8217;re going to mess around with your theme files, getting them via FTP and saving a local copy to work on, as well as a backup copy in case you screw up royally.</p>
<p>You&#8217;ll need a text editor.  I always use <a href="http://notepad-plus-plus.org/" target="_blank">Notepad++</a>, but regular Notepad or any plain text editor will work.  DO NOT use Word or anything like that.</p>
<p>So, we now both of our files open in our text editor.</p>
<h3>Upload your image</h3>
<p>You image must be on your server.  I would normally put it in wp-content/themes/<em>yourthemename/</em>images, and that&#8217;s what this tutorial assumes.  So upload 404image.png (or whatever yours is called) to this directory.</p>
<h3>404.php</h3>
<p>The 404.php page is what loads when you get a page not found error.  It will look different depending on your theme, but they will all pretty much have the same elements.</p>
<p>What we are basically going to do here is use the new graphic as a background on a div on the 404 page.  Don&#8217;t worry if that doesn&#8217;t make sense, I&#8217;ll walk you through.</p>
<p>Here is the code in my 404.php file for foodwhirl.com.  Yours probably looks similar.</p>
<pre>&lt;?php get_header(); ?&gt;  

        &lt;div id="container"&gt;    
            &lt;div id="content"&gt;

            &lt;div id="post-0" class="post error404 not-found"&gt;
                    &lt;h1&gt;&lt;?php _e( 'Not Found', 'your-theme' ); ?&gt;&lt;/h1&gt;
                    &lt;div&gt;
                        &lt;p&gt;&lt;?php _e( 'Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'your-theme' ); ?&gt;&lt;/p&gt;
                    &lt;?php get_search_form(); ?&gt;
                    &lt;/div&gt;&lt;!-- .entry-content --&gt;
                &lt;/div&gt;&lt;!-- #post-0 --&gt;            

            &lt;/div&gt;&lt;!-- #content --&gt;        
        &lt;/div&gt;&lt;!-- #container --&gt;

&lt;?php get_sidebar(); ?&gt;    
&lt;?php get_footer(); ?&gt;</pre>
<p>Look for the part of the page that has the 404 error text.  Something like &#8220;We&#8217;re sorry, but your page cannot be found&#8221;.  You can change this to something clever if you like by just modifying the text.  Note, to be safe, I&#8217;d stay away from special characters, apostrophes, and so forth in the error text.</p>
<p>Now, look for the div that surrounds your error text.  In the case of what I pasted above, div id=&#8221;content&#8221; is what we&#8217;re looking for (container would likely work too), and change it like so:</p>
<pre>&lt;div id="content"&gt;  becomes  &lt;div id="content404"&gt;</pre>
<p><em>(Techie note: there are more elegant ways to do this, but this is the easiest to explain in layman&#8217;s terms)</em></p>
<h3>style.css</h3>
<p>Next on to your style.css file.</p>
<p>You&#8217;re going to add this to the end of your css file.</p>
<pre> 
#content404 {
    background: url(images/404image.png) no-repeat transparent;
    border: none;
    float: left;
    width: 653px;
    min-height: 600px;
}</pre>
<p>The important parts of this are background (that sets the background to our new image), and min-height which i set to taller than my image.  The other items I got from the #content section of the css file.  Start with just adding the background, and if things look wonky go in and search for #content, and copy lines to your new #content404.</p>
<p>Now my 404 page looks like this:</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404pagefw.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6797" title="404pagefw" src="http://dabbled.org/wp-content/uploads/2011/08/404pagefw-500x365.png" alt="" width="500" height="365" srcset="https://dabbled.org/wp-content/uploads/2011/08/404pagefw-500x365.png 500w, https://dabbled.org/wp-content/uploads/2011/08/404pagefw-275x200.png 275w, https://dabbled.org/wp-content/uploads/2011/08/404pagefw.png 1009w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>The torn section looks fine, but the words are not in the right place, and it&#8217;s only showing up in that small section of the page.</p>
<h3>So, improvements.</h3>
<p>I decide I don&#8217;t want to show the sidebar, so I go to 404.php and remove the line:</p>
<pre>&lt;?php get_sidebar(); ?&gt;

Then I centered the image, so my css now looks like this:</pre>
<pre>#content404 {</pre>
<div>
<div>    background: url(&#8220;images/404image.png&#8221;) no-repeat scroll center 0 transparent;</div>
<div>    border: medium none;</div>
<div>    float: left;</div>
<div>    min-height: 600px;</div>
<div>    padding: 5px;</div>
<div>    width: 900px;</div>
</div>
<pre>}</pre>
<p><em>If you want your 404 image to overlay the header area (like it does on the Dabbled.org example) just move it up a little on the screen by adding something like:  margin-top: -50px;  to the #content404 section.</em></p>
<p><strong>The Error Text</strong></p>
<p>I also want to move the text so it displays on top of the image.</p>
<p>To do that I need to target the post text, which in my example would be this:</p>
<pre>&lt;div id="post-0" class="post error404 not-found"&gt;</pre>
<p>You&#8217;ll notice there is already a class identified called error404.  If there isn&#8217;t one on yours, just add it in.</p>
<p>So in my css file I add:</p>
<pre>.error404 {
background-color: rgba(256, 256, 256, .5);
font-size: 1.2em;
padding-left: 300px;
    padding-top: 50px;
    width: 200px;
}</pre>
<ul>
<li>The background color setting adds a semi-transparent white box behind my text for better readability against the image.</li>
<li>I increased the font-size to my liking, and used the padding settings to move the text to where I wanted it on the screen.</li>
<li>I set the width of the text area as well.</li>
</ul>
<p>Now this is what I have:</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/fw3.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6800" title="new foodwhirl 404 page" src="http://dabbled.org/wp-content/uploads/2011/08/fw3-500x351.png" alt="new foodwhirl 404 page" width="500" height="351" srcset="https://dabbled.org/wp-content/uploads/2011/08/fw3-500x351.png 500w, https://dabbled.org/wp-content/uploads/2011/08/fw3-275x193.png 275w, https://dabbled.org/wp-content/uploads/2011/08/fw3.png 1008w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Obviously, your settings will be different on your text area to get it to the right spot.  This is where firebug comes in really handy, as you can Inspect Element and change width and padding to get it where you want it, then just copy those settings over to your style.css.</p>
<p>And here it is in action: <a href="http://foodwhirl.com/sl;ag" target="_blank">http://foodwhirl.com/notarealurl</a></p>
<p>That&#8217;s it!</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6796</post-id>	</item>
		<item>
		<title>Tutorial: Make a &#8220;torn&#8221; 404 page for your website.  (part 1: photoshop)</title>
		<link>https://dabbled.org/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop/</link>
					<comments>https://dabbled.org/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 21:14:10 +0000</pubDate>
				<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6763</guid>

					<description><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404foodwhirl.png"></a>The other day I announced that i had a <a href="http://dabbled.org/2011/08/re-design-update-a-new-404-page.html" target="_blank">new 404 Page Not Found page for Dabbled</a>. And it&#8217;s quite cute if i do say so myself. Just type some gibberish after dabbled.org/ in your address bar and you&#8217;ll see it. Or just click this: <a href="http://dabbled.org/sjdlfk" target="_blank">http://dabbled.org/sjdlfk</a>.</p>
<p>So several people have asked how to do something like this themselves. Obviously you&#8217;ll probably want to do something different than I have, using an image or a theme that fits with your site.&#8230; <a href="https://dabbled.org/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404foodwhirl.png"><img decoding="async" loading="lazy" class="alignright size-medium wp-image-6784 clearbk" title="404foodwhirl" src="http://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-275x237.png" alt="" width="275" height="237" srcset="https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-275x237.png 275w, https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-500x432.png 500w, https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl.png 630w" sizes="(max-width: 275px) 100vw, 275px" /></a>The other day I announced that i had a <a href="http://dabbled.org/2011/08/re-design-update-a-new-404-page.html" target="_blank">new 404 Page Not Found page for Dabbled</a>. And it&#8217;s quite cute if i do say so myself. Just type some gibberish after dabbled.org/ in your address bar and you&#8217;ll see it. Or just click this: <a href="http://dabbled.org/sjdlfk" target="_blank">http://dabbled.org/sjdlfk</a>.</p>
<p>So several people have asked how to do something like this themselves. Obviously you&#8217;ll probably want to do something different than I have, using an image or a theme that fits with your site.</p>
<p>So, to show you a slightly different take with this tutorial, I&#8217;m going to walk you through doing a 404 page for <a href="Foodwhirl.com" target="_blank">Foodwhirl.com</a>.  Since foodwhirl is a recipe site, I&#8217;ll use a photograph instead of the little robot drawing, and an image more appropriate to food.  A search through Creative Commons licensed (I adore CC licensing!)  images on flickr found me this &#8216;<a href="http://www.flickr.com/photos/stillframe/1535305023/">empty refrigerator</a>&#8216; image, which I thought would be cute for a Page not Found on a food site.</p>
<p>Part 1 will address how to create the image for use on your webpage.  Part 2 will explain how to make it part of your 404 webpage, even if you&#8217;re pretty clueless around code.  It will be written with WordPress websites in mind, but you should be able to take those principles and apply to any website.</p>
<h2>Part 1:  Create the Image.</h2>
<p>For this step I&#8217;m using Photoshop.  You could probably do this with other image software as well*</p>
<h3>Get an image to use behind your torn background.</h3>
<p>This could be a photograph or a drawing, preferably something funny that relates to your site.  If you have a crochet site, for example, a kitten tangled in yarn could be cute.  (oops, the kitten got into the yarn and now we can&#8217;t find your page!).  Maybe you want to have a picture of exposed gears like they are seeing the background machinery that makes your website work.  Use your imagination.</p>
<h3>Get your site&#8217;s background.</h3>
<p>Create a new image in Photoshop, at about 1000&#215;1000 px, at 72 pix per inch, just to have plenty of room to work.</p>
<p>Make a new layer and make that the same color as the background of your site.<br />
<span id="more-6763"></span><br />
(If your site is a solid color, you&#8217;ll need that color.  If your site has a texture overlay as the background, get the texture.  Note, if you site is say white, with some blue designs on it, don&#8217;t worry about the designs, you&#8217;ll just need white.  You&#8217;re just looking for the primary color of the background of your site.  Foodwhirl is white, so that&#8217;s all I need for that.  For Dabbled I actually used the .jpg that creates the watercolor paper look on the site.  Taking a screenshot of the site background will also work   But minimally, you want to get as close to the site color as you can.)</p>
<h3>The Torn Section: Sizing</h3>
<p>Next you&#8217;re going to want to figure out how big to make your torn section. For Dabbled, my image is about 600&#215;600 at it&#8217;s widest points.  You&#8217;ll want to take into account how much space you have on your screen, whether you want to overlap the header at all, and whether you want to leave your toolbars visible.  For Foodwhirl, I think I&#8217;ll keep the size about the same, or maybe a little smaller.</p>
<figure id="attachment_6779" aria-describedby="caption-attachment-6779" style="width: 500px" class="wp-caption alignnone"><a href="http://dabbled.org/wp-content/uploads/2011/08/torn1.png"><img decoding="async" loading="lazy" class="size-large wp-image-6779" title="Step 3 " src="http://dabbled.org/wp-content/uploads/2011/08/torn1-500x336.png" alt="" width="500" height="336" srcset="https://dabbled.org/wp-content/uploads/2011/08/torn1-500x336.png 500w, https://dabbled.org/wp-content/uploads/2011/08/torn1-275x184.png 275w, https://dabbled.org/wp-content/uploads/2011/08/torn1.png 800w" sizes="(max-width: 500px) 100vw, 500px" /></a><figcaption id="caption-attachment-6779" class="wp-caption-text">Estimate the size of your image by dragging guides to approximate the space.</figcaption></figure>
<p>I&#8217;m going for about 600&#215;500 here.</p>
<ul>
<li>Paste your image into a separate layer, shown above.</li>
<li>Turn your background into a layer if it&#8217;s not one already (rightclick to do so) and set it&#8217;s opacity to 75%.</li>
<li>Move it on top of the photo layer (shown below)</li>
<li>Turn off &#8220;Snap to Guides&#8221; (View|Snap To) and draw an odd shaped space with your lasso tool.</li>
</ul>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/walkthorugh.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6780" title="select" src="http://dabbled.org/wp-content/uploads/2011/08/walkthorugh-500x327.png" alt="" width="500" height="327" srcset="https://dabbled.org/wp-content/uploads/2011/08/walkthorugh-500x327.png 500w, https://dabbled.org/wp-content/uploads/2011/08/walkthorugh-275x179.png 275w, https://dabbled.org/wp-content/uploads/2011/08/walkthorugh.png 900w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<ul>
<li>Once you have a shape you like (remember, you&#8217;ll need room to add text to this, so space accordingly), make sure you are on the solid background layer, and click &#8216;delete&#8217;.</li>
<li>Set your layer back to 100%, so you can&#8217;t see through it anymore.</li>
</ul>
<ul>
<li>Now Expand the selection by about 6 px. (on my old PS version that&#8217;s Select|Modify|Expand)</li>
<li>If you like, you can nudge the select a pixel to the right using the arrow key (makes it a little less uniform).</li>
<li>Now,  create a <strong>new</strong> layer, and fill the shape with any color you want.  Hide that layer (you&#8217;ll need it later).</li>
<li>Go back to your background layer.</li>
</ul>
<h3>Your Torn Edges</h3>
<p>The area you now have selected is the area that will simulate the thickness of the paper where the multiple layers show up when you tear it.</p>
<p>Color-wise, you&#8217;ll want to think about what color you would see if you tore paper that is the color of your background.  A red background, for example, would probably look dark pink inside.  A creamy background could get away with white.</p>
<p>For my pure white background, I&#8217;m going to set both my foreground and background to a very light offwhite/cream color, and use the Torn Edges filter, as well as the Add Noise filter.</p>
<p>You&#8217;ll want to play around with this to get a good effect.  Experiment with different colors and filters depending on your background.</p>
<p>This is really subtle (maybe too much so) but this is what mine looks like zoomed to 280%</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/Untitled-2.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6781" title="zoomed torn edges" src="http://dabbled.org/wp-content/uploads/2011/08/Untitled-2-500x279.png" alt="zoomed torn edges" width="500" height="279" srcset="https://dabbled.org/wp-content/uploads/2011/08/Untitled-2-500x279.png 500w, https://dabbled.org/wp-content/uploads/2011/08/Untitled-2-275x153.png 275w, https://dabbled.org/wp-content/uploads/2011/08/Untitled-2.png 825w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Next we add some depth, the quick and dirty way.  Our good friend the dropshadow layer style.</p>
<p>Play around with the settings, but this is what I used for mine. (Click to view larger)</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/dropshadow.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6782" title="dropshadow" src="http://dabbled.org/wp-content/uploads/2011/08/dropshadow-500x385.png" alt="" width="500" height="385" srcset="https://dabbled.org/wp-content/uploads/2011/08/dropshadow-500x385.png 500w, https://dabbled.org/wp-content/uploads/2011/08/dropshadow-275x212.png 275w, https://dabbled.org/wp-content/uploads/2011/08/dropshadow.png 922w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Now we have our photo, we have our background with torn edges, we just need to cut it out.</p>
<ul>
<li>First, merge your background color layer, with the image layer.</li>
<li>Remember that layer I told you to create earlier, and just fill the shape with any color?<br />
Go unhide that layer, and click on the shape with the magic wand tool to select it.<br />
Now go back to your merged layer, Select Inverse, and delete.</li>
<li>(OK, for this example you really don&#8217;t have to do it this way, as you could just select the white background, but this is a simple methods and works with all backgrounds, even textured and multicolored.)</li>
</ul>
<p>All that will be left is your lovely torn out piece!</p>
<ul>
<li>Trim this (Image|Trim) and Save For Web as a PNG.</li>
</ul>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/trimmed.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6783" title="trimmed" src="http://dabbled.org/wp-content/uploads/2011/08/trimmed-500x398.png" alt="" width="500" height="398" srcset="https://dabbled.org/wp-content/uploads/2011/08/trimmed-500x398.png 500w, https://dabbled.org/wp-content/uploads/2011/08/trimmed-275x219.png 275w, https://dabbled.org/wp-content/uploads/2011/08/trimmed.png 772w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Look, we made a hole!</p>
<p>Note, I don&#8217;t think this is quite as effective as the one on Dabbled, as the watercolor paper leads to a better effect than just the plain white, but it&#8217;s still pretty cool.</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/08/404foodwhirl.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6784 clearbk" title="404foodwhirl" src="http://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-500x432.png" alt="" width="500" height="432" srcset="https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-500x432.png 500w, https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl-275x237.png 275w, https://dabbled.org/wp-content/uploads/2011/08/404foodwhirl.png 630w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>So, next will be part two where I explain how to make it part of your webpage:  <a title="Permalink to Torn Page Tutorial Part 2: Put a cool graphic on your 404 page (WordPress)." href="../2011/08/torn-page-tutorial-part-2-put-a-cool-graphic-on-your-404-page-wordpress.html" rel="bookmark">Torn Page Tutorial Part 2: Put a cool graphic on your 404 page (WordPress).</a><br />
&#8212;&#8211;</p>
<p><em>*I&#8217;m a photoshop girl myself, but if you don&#8217;t have it&#8230; there&#8217;s a learning curve, but I recommend <a href="http://www.gimp.org/" target="_blank">Gimp </a>for those who like free and powerful image manipulation. </em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/tutorial-make-a-torn-404-page-for-your-website-part-1-photoshop/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6763</post-id>	</item>
		<item>
		<title>Re-design update: a new 404 page</title>
		<link>https://dabbled.org/re-design-update-a-new-404-page/</link>
					<comments>https://dabbled.org/re-design-update-a-new-404-page/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Wed, 10 Aug 2011 17:33:30 +0000</pubDate>
				<category><![CDATA[Robots]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[404 page]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6746</guid>

					<description><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/robot404.png"></a>As part of the changes I&#8217;m working on to dabbled.org, I decided to create a fun 404 page (you know, the Page Not Found thing you get with a bad link). The new background is watercolor paper, so I created an effect of the paper being torn to see what was underneath&#8211;and of course some cute robots peeking through. And the effect even covers part of the header. I thought it was a pretty cute trick.&#8230; <a href="https://dabbled.org/re-design-update-a-new-404-page/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p><a href="http://dabbled.org/wp-content/uploads/2011/08/robot404.png"><img decoding="async" loading="lazy" class="size-medium wp-image-6747 alignright" style="background: none repeat scroll 0 0 transparent; box-shadow: 0px 0px 0px 0px #ffffff;" title="robot404" src="http://dabbled.org/wp-content/uploads/2011/08/robot404-275x250.png" alt="" width="275" height="250" srcset="https://dabbled.org/wp-content/uploads/2011/08/robot404-275x250.png 275w, https://dabbled.org/wp-content/uploads/2011/08/robot404-500x456.png 500w, https://dabbled.org/wp-content/uploads/2011/08/robot404.png 650w" sizes="(max-width: 275px) 100vw, 275px" /></a>As part of the changes I&#8217;m working on to dabbled.org, I decided to create a fun 404 page (you know, the Page Not Found thing you get with a bad link). The new background is watercolor paper, so I created an effect of the paper being torn to see what was underneath&#8211;and of course some cute robots peeking through. And the effect even covers part of the header. I thought it was a pretty cute trick. You can see it by going to any link on the site that doesn&#8217;t exist, like <a href="http://dabbled.org/slkdfjs" target="_blank">http://dabbled.org/slkdfjs</a>.</p>
<p>I&#8217;ve seen several cute 404 pages recently, but mine was inspired by the one on <a href="http://www.swiss-miss.com/" target="_blank">Swiss Miss</a> (great design site). <a href="http://www.swiss-miss.com/jslek" target="_blank">Here&#8217;s her&#8217;s</a>.</p>
<p>If anyone&#8217;s interested, I&#8217;ll write up a quick tutorial on how to make the graphic in photoshop, and also how to incorporate it into your 404 page.</p>
<p><em>PS: you can see another version of the same thing at my sometimes updated art site: <a href="http://nancydorsner.com/sdjflk" target="_blank">http://nancydorsner.com/sdjflk</a></em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/re-design-update-a-new-404-page/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6746</post-id>	</item>
		<item>
		<title>Excuse the Progress! Making changes around here&#8230;</title>
		<link>https://dabbled.org/excuse-the-progress-making-changes-around-here/</link>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Mon, 08 Aug 2011 17:55:07 +0000</pubDate>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[website design]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6742</guid>

					<description><![CDATA[<p>Since I&#8217;m a web designer, it&#8217;s pretty sad that I haven&#8217;t kept up my own blog up as nice as some of the ones I work on!  I&#8217;ve been meaning to clean up the look of Dabbled for a while now, and I&#8217;m finally getting around to making some changes to the look and feel.  I haven&#8217;t quite figured out the final direction, but for right now, I&#8217;ve mostly been just cleaning up the site look, going for a more streamlined feel with more white space.&#8230; <a href="https://dabbled.org/excuse-the-progress-making-changes-around-here/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>Since I&#8217;m a web designer, it&#8217;s pretty sad that I haven&#8217;t kept up my own blog up as nice as some of the ones I work on!  I&#8217;ve been meaning to clean up the look of Dabbled for a while now, and I&#8217;m finally getting around to making some changes to the look and feel.  I haven&#8217;t quite figured out the final direction, but for right now, I&#8217;ve mostly been just cleaning up the site look, going for a more streamlined feel with more white space. I also stuck up a modified logo.<br />
<a href="http://dabbled.org/wp-content/uploads/2011/08/logo2.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6743" title="logo2" src="http://dabbled.org/wp-content/uploads/2011/08/logo2-500x116.png" alt="" width="500" height="116" srcset="https://dabbled.org/wp-content/uploads/2011/08/logo2-500x116.png 500w, https://dabbled.org/wp-content/uploads/2011/08/logo2-275x64.png 275w, https://dabbled.org/wp-content/uploads/2011/08/logo2.png 960w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>so stay tuned, this isn&#8217;t final&#8230; more to come!</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6742</post-id>	</item>
		<item>
		<title>New Facebook Landing page for Foodwhirl</title>
		<link>https://dabbled.org/new-facebook-landing-page-for-foodwhirl/</link>
					<comments>https://dabbled.org/new-facebook-landing-page-for-foodwhirl/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Mon, 16 May 2011 17:12:14 +0000</pubDate>
				<category><![CDATA[website design]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[foodwhirl]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6574</guid>

					<description><![CDATA[<p>OK, OK, I promise more arts &#38; crafts and less web design in the near future, but I had to show this off.</p>
<p><a href="http://facebook.com/foodwhirl"></a></p>
<p>&#160;</p>
<p>Facebook pages are generally pretty boring, and I have a client who wanted a fancier facebook landing page.  So I decided to create one for Foodwhirl to see how difficult it was, before I costed it for her.  And, though a little complex (<em>once I figured out that facebook was no longer supporting FBML and I needed to use iFrames, <a title="facebook page with iframes" href="http://socialmouths.com/blog/2011/03/16/how-to-build-a-facebook-landing-page-with-iframes/" target="_blank">i found this great tutorial</a></em>) , it wasn&#8217;t too hard for my mad web skillz.&#8230; <a href="https://dabbled.org/new-facebook-landing-page-for-foodwhirl/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>OK, OK, I promise more arts &amp; crafts and less web design in the near future, but I had to show this off.</p>
<p><a href="http://facebook.com/foodwhirl"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6575" title="facebook-landing page for foodwhirl" src="http://dabbled.org/wp-content/uploads/2011/05/facebook-landing-500x458.jpg" alt="" width="500" height="458" srcset="https://dabbled.org/wp-content/uploads/2011/05/facebook-landing-500x458.jpg 500w, https://dabbled.org/wp-content/uploads/2011/05/facebook-landing-275x252.jpg 275w, https://dabbled.org/wp-content/uploads/2011/05/facebook-landing.jpg 810w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>&nbsp;</p>
<p>Facebook pages are generally pretty boring, and I have a client who wanted a fancier facebook landing page.  So I decided to create one for Foodwhirl to see how difficult it was, before I costed it for her.  And, though a little complex (<em>once I figured out that facebook was no longer supporting FBML and I needed to use iFrames, <a title="facebook page with iframes" href="http://socialmouths.com/blog/2011/03/16/how-to-build-a-facebook-landing-page-with-iframes/" target="_blank">i found this great tutorial</a></em>) , it wasn&#8217;t too hard for my mad web skillz.</p>
<p>If you haven&#8217;t &#8220;Liked&#8221; foodwhirl, just go here: <a href="http://www.facebook.com/Foodwhirl " target="_blank">http://www.facebook.com/Foodwhirl </a>to see it!  And of course, Like foodwhirl while you&#8217;re there.</p>
<p>If you have friended Foodwhirl on Facebook, you can still see the page, just click &#8216;Welcome&#8217; in the list in the left sidebar.</p>
<p>NOTE: if you&#8217;ve enabled secure browsing in facebook (https:), you&#8217;ll get an error message first.  Just click to go to http for that session, and you&#8217;ll be able to see it.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/new-facebook-landing-page-for-foodwhirl/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6574</post-id>	</item>
		<item>
		<title>WordPress: Adding Featured Image support to your theme</title>
		<link>https://dabbled.org/wordpress-adding-featured-image-support-to-your-theme/</link>
					<comments>https://dabbled.org/wordpress-adding-featured-image-support-to-your-theme/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Fri, 13 May 2011 13:53:27 +0000</pubDate>
				<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[featured image]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6565</guid>

					<description><![CDATA[<p>As a followup to<a href="http://dabbled.org/2011/05/blogger-question-how-to-get-the-right-images-when-liking-on-facebook.html" target="_blank"> yesterday&#8217;s post on making the correct images show up on Facebook</a>, here&#8217;s some more information about adding the recent WordPress Featured Image functionality to your wordpress theme.</p>
<p>If your WordPress theme came out prior to 2.9 or 3.0, it won&#8217;t have support for the Featured Image functionality.</p>
<p>To enable the functionality, you need to add this line to your functions.php file.</p>
<pre>if ( function_exists( 'add_theme_support' ) ) {
  add_theme_support( 'post-thumbnails' );
}</pre>
<p>Once you do this, you&#8217;ll see &#8220;Use as Featured Image&#8221; next to the Insert Into Post button.&#8230; <a href="https://dabbled.org/wordpress-adding-featured-image-support-to-your-theme/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>As a followup to<a href="http://dabbled.org/2011/05/blogger-question-how-to-get-the-right-images-when-liking-on-facebook.html" target="_blank"> yesterday&#8217;s post on making the correct images show up on Facebook</a>, here&#8217;s some more information about adding the recent WordPress Featured Image functionality to your wordpress theme.</p>
<p>If your WordPress theme came out prior to 2.9 or 3.0, it won&#8217;t have support for the Featured Image functionality.</p>
<p>To enable the functionality, you need to add this line to your functions.php file.</p>
<pre>if ( function_exists( 'add_theme_support' ) ) {
  add_theme_support( 'post-thumbnails' );
}</pre>
<p>Once you do this, you&#8217;ll see &#8220;Use as Featured Image&#8221; next to the Insert Into Post button. (You&#8217;ll also see a Featured Image box under the Post Tags box on the right side of the Edit Post page)</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/05/featuredimage.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6567" title="featuredimage" src="http://dabbled.org/wp-content/uploads/2011/05/featuredimage-500x229.png" alt="" width="500" height="229" srcset="https://dabbled.org/wp-content/uploads/2011/05/featuredimage-500x229.png 500w, https://dabbled.org/wp-content/uploads/2011/05/featuredimage-275x126.png 275w, https://dabbled.org/wp-content/uploads/2011/05/featuredimage.png 646w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>If you&#8217;re just trying to <a href="http://dabbled.org/2011/05/blogger-question-how-to-get-the-right-images-when-liking-on-facebook.html" target="_blank">fix the Facebook issues we talked about yesterday</a>, and you&#8217;re using the plugin I suggested, this is really all you need to do to set a specific image to come up on Facebook.</p>
<p>However, this Featured Image won&#8217;t do anything <strong>else </strong>for you, unless you implement &#8216;featured image&#8217; functionality elsewhere in your theme.</p>
<p><span id="more-6565"></span></p>
<h2>The following is for those who aren&#8217;t afraid of messing with their theme files:</h2>
<p>So if you want to actually USE the featured image, as say a thumbnail for your for your posts on your archive pages, or something like that, you&#8217;ll have to make a few more changes to your theme.</p>
<h3>If you want to add thumbnails to your posts.</h3>
<p>Let&#8217;s say you aren&#8217;t using any sort of thumbnailing functionality right now.  On your category page, you just show an excerpt.  If you want to add your thumbnail sized image to display next to the excerpt, add this to your category.php file right above where you see &lt;?php the_excerpt(); ?&gt;:</p>
<pre>&lt;?php if(has_post_thumbnail()) { ?&gt;
 &lt;div class="thumb"&gt;
 &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_post_thumbnail('thumbnail'); ?&gt;&lt;/a&gt;
 &lt;/div&gt;
&lt;?php } else { ?&gt;
&lt;?php } ?&gt;</pre>
<p>This basically says &#8220;If the post has a Featured Image set, then show it in the thumbnail size (and have it link back to the full post)&#8221; .  If not, don&#8217;t do anything (I left the &#8216;else&#8217; in there in case you wanted to do something different if it wasn&#8217;t set)</p>
<p>If the image display looks odd, you can fix it with css.  In your style.css file, you can set the styling for the thumbnail with something like this .</p>
<div>
<pre>.thumb {</pre>
<pre>
<div>float: left;
padding-bottom: 5px;
<div>padding-right: 10px;
padding-top: 0;</div>
</div>
}</pre>
</div>
<h3>If you already  have some sort of thumbnailing functionality, and you want to use the featured image when it&#8217;s set:</h3>
<p>Look for where you are displaying the image next to the post.  You&#8217;ll want to tell the file to look and see if a featured image is set, and if it is, display that.  Otherwise display the image using whatever method you were using prior (unless you want to go set the featured image on every past blog post, which wouldn&#8217;t want to do).</p>
<pre>&lt;?php if(has_post_thumbnail()) {      ?&gt;
 &lt;div&gt;
 &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;
   &lt;?php the_post_thumbnail('thumbnail'); ?&gt;&lt;/a&gt;
 &lt;/div&gt;

 &lt;?php } else { ?&gt;

<em>whatever you were doing before</em>

&lt;?php } ?&gt;</pre>
<blockquote>
<pre><strong>Example</strong>:
 <span style="color: #800080;">&lt;div class="entry-summary"&gt;</span>
 <span style="color: #339966;">&lt;?php if(has_post_thumbnail()) {      ?&gt;
 &lt;div class="thumb"&gt;
 &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_post_thumbnail('thumbnail'); ?&gt;&lt;/a&gt;
 &lt;/div&gt;

 &lt;?php } else { ?&gt;</span>
 <span style="color: #800080;">&lt;a href="&lt;?php the_permalink() ?&gt;" title="&lt;?php the_title(); ?&gt;"&gt;
 &lt;div class="thumb"&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;
 &lt;?php get_attachment_image($post-&gt;ID, 'thumbnail', 'alt="' .
    $post-&gt;post_title . '"'); ?&gt;&lt;/a&gt;&lt;/div&gt;</span>
 <span style="color: #339966;">&lt;?php } ?&gt;</span>
<span style="color: #800080;"> &lt;?php the_advanced_excerpt(); ?&gt;
 &lt;/div&gt;&lt;!-- .entry-summary --&gt;</span></pre>
<p>where <span style="color: #339966;">green </span>text = the new text that was added</p></blockquote>
<p>There is tons more you can do with featured image functionality.  You can set up custom sizes to use other than the standard thumbnail, medium, and large, for example.  But this is a good start.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/wordpress-adding-featured-image-support-to-your-theme/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6565</post-id>	</item>
		<item>
		<title>Blogger Question: How to get the right images when Liking on Facebook</title>
		<link>https://dabbled.org/blogger-question-how-to-get-the-right-images-when-liking-on-facebook/</link>
					<comments>https://dabbled.org/blogger-question-how-to-get-the-right-images-when-liking-on-facebook/#comments</comments>
		
		<dc:creator><![CDATA[Dot]]></dc:creator>
		<pubDate>Thu, 12 May 2011 15:50:03 +0000</pubDate>
				<category><![CDATA[Tutorials/Tips]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[facebook]]></category>
		<guid isPermaLink="false">http://dabbled.org/?p=6560</guid>

					<description><![CDATA[<p>Sometimes here on Dabbled I put on my web developer hat and answer technical questions that bloggers who read Dabbled might want to know.</p>
<p>My dear twitter bud <a href="http://goodncrazy.com/" target="_blank">Carissa</a> (@carissarogers) asks:</p>
<p><em>&#8220;hey, any idea why sometimes images DON&#8217;t show up correctly when &#8216;liking&#8217; a post for FB direct from site?? Like the sidebar comes up etc..&#8221;</em></p>
<p>Why yes, yes I do!</p>
<p>Basically, when you &#8220;Like&#8221; (click a facebook icon) within a webpage, or when you link to a webpage from Facebook, Facebook reads the information on your webpage to figure out what to display. &#8230; <a href="https://dabbled.org/blogger-question-how-to-get-the-right-images-when-liking-on-facebook/" class="read-more"> [ KEEP READING ] </a></p>]]></description>
										<content:encoded><![CDATA[<p>Sometimes here on Dabbled I put on my web developer hat and answer technical questions that bloggers who read Dabbled might want to know.</p>
<p>My dear twitter bud <a href="http://goodncrazy.com/" target="_blank">Carissa</a> (@carissarogers) asks:</p>
<p><em>&#8220;hey, any idea why sometimes images DON&#8217;t show up correctly when &#8216;liking&#8217; a post for FB direct from site?? Like the sidebar comes up etc..&#8221;</em></p>
<p>Why yes, yes I do!</p>
<p>Basically, when you &#8220;Like&#8221; (click a facebook icon) within a webpage, or when you link to a webpage from Facebook, Facebook reads the information on your webpage to figure out what to display.  But it is not necessarily smart enough to know which text or image is really the relevant one, which is why sometimes you see really silly things in the facebook link, like icons, instead of the photo related to the page or article.</p>
<h3>So what Carissa really wants to know is, is this something that can be fixed.</h3>
<p>Facebook reads what are called Open Graph tags to figure out what to display.  If the tags don&#8217;t exist on the webpage, it makes a guess as to what those tags should be, based on the page content.</p>
<p>If we look at Carissa&#8217;s main page in<a href="https://graph.facebook.com/?id=http://goodncrazy.com/"> Facebook&#8217;s URL Linter</a>, we see that Facebook is extracting the &#8216;title&#8217; from the &lt;title&gt; in her blog source, and getting the image to display from some random thing on her page tagged &lt;img&gt;.</p>
<p><a href="http://dabbled.org/wp-content/uploads/2011/05/goodncrazy.com-linter.png"><img decoding="async" loading="lazy" class="alignnone size-large wp-image-6561" title="goodncrazy.com-linter" src="http://dabbled.org/wp-content/uploads/2011/05/goodncrazy.com-linter-500x307.png" alt="" width="500" height="307" srcset="https://dabbled.org/wp-content/uploads/2011/05/goodncrazy.com-linter-500x307.png 500w, https://dabbled.org/wp-content/uploads/2011/05/goodncrazy.com-linter-275x168.png 275w, https://dabbled.org/wp-content/uploads/2011/05/goodncrazy.com-linter.png 716w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>The same thing happens if you enter the URL for a specific post &#8211; the image is just picked from anywhere on the page.</p>
<p><em>If you want to see what Facebook will display on a post or a page, you can use the <a href="https://developers.facebook.com/tools/linter" target="_blank">Linter </a>to find out.  It&#8217;s more reliable than just typing the link into Facebook, because Facebook will cache images and may not display a change when you change the image.  Using Linter also refreshes the cache.</em></p>
<p>So if the extracted information is not what you want displayed on Facebook, you&#8217;ll need to provide Facebook more information so that they&#8217;ll know what to display.  You do this by setting Open Graph tags.</p>
<p><strong>So how do I set the Open Graph tags?</strong></p>
<p>I wrote up a longer (slightly more techie) , explanation at the Dabbled Studios blog:<strong><a title="Permalink to Why don’t my blog photos show up on Facebook when someone Likes a post?" rel="bookmark" href="http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post" target="_blank"> Why don’t my blog photos show up on Facebook when someone Likes a post?</a></strong></p>
<p><strong>&#8230;but here&#8217;s a quick answer that will work for many of you.</strong></p>
<p>If you have a WordPress blog, like Carissa, the quickest simple fix you can do is to install a plugin which sets the og:image tag for each of your posts to either the attached image, or the &#8216;featured image&#8217;.  I&#8217;m sure there are several out there, but try this plugin:  <a href="http://wordpress.org/extend/plugins/fetenweb-image-src-metatag/">FetenWeb image_src Metatag.</a><br />
I’ve used this one on a few sites, and it will pull the<a href="http://dabbled.org/2011/05/wordpress-adding-featured-image-support-to-your-theme.html" target="_blank"> featured image  (if you’re using that functionality) </a>or the image attached to the post  for facebook links.  You can also set a default image, in case you don&#8217;t have any image on the post.  It’s simple, and  seems to work quite well.  If you have multiple images on a post, and you want to ensure that just a particular one shows up, be sure to click &#8216;Set as featured image&#8217; for the particular image, within your image upload in WordPress (assuming your theme has that functionality activated)</p>
<p>If that doesn&#8217;t work for you, because your site is more complex, or doesn&#8217;t use WordPress, <strong></strong><strong><a title="Permalink to Why don’t my blog photos show up on Facebook when someone Likes a post?" rel="bookmark" href="http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post" target="_blank">read more about setting the Open Graph tags.</a></strong></p>
<p><strong>Update: <a href="http://dabbled.org/2011/05/wordpress-adding-featured-image-support-to-your-theme.html" target="_blank">How to add featured image support to your WP theme</a><br />
</strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dabbled.org/blogger-question-how-to-get-the-right-images-when-liking-on-facebook/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6560</post-id>	</item>
	</channel>
</rss>
