<?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>Answer My Searches &#187; del.icio.us</title>
	<atom:link href="http://www.answermysearches.com/category/delicious/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.answermysearches.com</link>
	<description>Answers to everything I search for, every day</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:27:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to add digg this, reddit this, et al links to WordPress Posts</title>
		<link>http://www.answermysearches.com/how-to-add-digg-this-reddit-this-et-al-links-to-wordpress-posts/3/</link>
		<comments>http://www.answermysearches.com/how-to-add-digg-this-reddit-this-et-al-links-to-wordpress-posts/3/#comments</comments>
		<pubDate>Sat, 07 Jan 2006 05:44:07 +0000</pubDate>
		<dc:creator>Greg Pinero (Primary Searcher)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[del.icio.us]]></category>

		<guid isPermaLink="false">http://www.answermysearches.com/index.php/how-to-add-digg-this-reddit-this-et-al-links-to-wordpress-posts/3/</guid>
		<description><![CDATA[Want submission links to all the social browsing/bookmarking websites to appear on each of your posts?  Then just follow my instructions.
(See bottom of this post for an example and here&#8217;s an image of that example in case I ever stop using it on this site someday.)

I searched around for plugins and any advice on [...]]]></description>
			<content:encoded><![CDATA[<p>Want submission links to all the <strong>social browsing/bookmarking websites</strong> to appear on each of your posts?  Then just follow my instructions.<br />
<em>(See bottom of this post for an example and here&#8217;s an <a href="http://www.answermysearches.com/wp-content/uploads/2006/01/ScreenShot_2006_01_0623_45_02.jpg">image </a>of that example in case I ever stop using it on this site someday.)<br />
</em></p>
<p>I searched around for plugins and any advice on how to do this.  Upon having no luck I decided to take matters into my own hands.  Here&#8217;s what you do:</p>
<ol>
<li>
<p>Download these images and upload them to a directory on your webserver.<br />
<img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/delicious.gif" alt="del.icio.us" border="0"/><br />
<img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/digg.gif" alt="Digg" border="0"/><br />
<img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/frul.gif" alt="FURL" border="0"/><br />
<img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/yahoomyweb.jpg" alt="Yahoo! My Web 2.0" border="0"/><br />
<img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/reddit_btn.gif" alt="Reddit" border="0"/></p>
</li>
<li>
<p>Now go find these two files in the current <strong>theme </strong>you are using and get them ready for editing:<br />
<strong>index.php</strong><br />
<strong>single.php</strong>
</p>
</p>
</li>
<li>
<p>Edit these files by inserting this text between where the post content is printed and the closing parts of the post is printed.  (Of course you must add the URL&#8217;s of those images from step 1 to this code before it will work.)</p>
<pre>
&lt;div class="spreadtheword"&gt;
    &lt;a title="Save To del.icio.us" href="http://del.icio.us/post?url=&lt;?php the_permalink() ?&gt;;title=&lt;?php bloginfo('name'); ?&gt; &amp;gt;&amp;gt; &lt;?php the_title() ?&gt;"&gt;&lt;img src="[URL DIRECTORY TO WHERE YOU UPLOADED YOUR IMAGE]/delicious.gif" alt="del.icio.us" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
    &lt;a title="Submit To Digg" href="http://digg.com/submit?phase=2&amp;url=&lt;?php the_permalink() ?&gt;" &gt;&lt;img src="[URL DIRECTORY TO WHERE YOU UPLOADED YOUR IMAGE]/digg.gif" alt="Digg" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
    &lt;a title="Save To FURL" href="http://www.furl.net/storeIt.jsp?t=&lt;?php the_title() ?&gt;;u=&lt;?php the_permalink() ?&gt;" &gt;&lt;img src="[URL DIRECTORY TO WHERE YOU UPLOADED YOUR IMAGE]/frul.gif" alt="FURL" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
    &lt;a title="Save to Yahoo! My Web 2.0" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=&lt;?php the_title() ?&gt;;u=&lt;?php the_permalink() ?&gt;"&gt;&lt;img src="[URL DIRECTORY TO WHERE YOU UPLOADED YOUR IMAGE]/yahoomyweb.jpg" alt="Yahoo! My Web 2.0" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
    &lt;a title="Save to Reddit" href="http://reddit.com/submit?url=&lt;?php the_permalink() ?&gt;;title=&lt;?php the_title() ?&gt;" &gt;&lt;img src="[URL DIRECTORY TO WHERE YOU UPLOADED YOUR IMAGE]/reddit_btn.gif" alt="Reddit" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;
</pre>
<p>As an example here is how my final <strong>single.php</strong> looks (remember you&#8217;re also doing this to <strong>index.php</strong>):</p>
<pre>
&lt;?php get_header(); ?&gt;
&lt;div id="content"&gt;
    &lt;?php while (have_posts()) : the_post(); ?&gt;
        &lt;div class="post"&gt;
            &lt;h3 class="storytitle" id="post-&lt;?php the_ID(); ?&gt;"&gt;
                &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link: &lt;?php the_title(); ?&gt;"&gt;&lt;?php if (function_exists('ImageHeadline_get_ttf_font_name')) the_title('-image-'); else the_title(); ?&gt; &lt;/a&gt;
            &lt;/h3&gt;
            &lt;p class="postdate"&gt;&lt;strong&gt;&lt;?php the_time('l, F jS, Y') ?&gt;&lt;/strong&gt; at &lt;strong&gt;&lt;?php the_time() ?&gt;&lt;/strong&gt; by &lt;strong&gt;&lt;?php the_author(); ?&gt;&lt;/strong&gt; &lt;?php edit_post_link('Edit','&lt;small&gt;|','&lt;/small&gt;'); ?&gt;&lt;/p&gt;
            &lt;div class="storycontent"&gt;
                &lt;?php the_content('&lt;br /&gt;&lt;strong"&gt;Read the rest of this entry &amp;#187;&lt;/strong&gt;'); ?&gt;
            &lt;/div&gt;

            &lt;div class="spreadtheword"&gt;
                &lt;a title="Save To del.icio.us" href="http://del.icio.us/post?url=&lt;?php the_permalink() ?&gt;;title=&lt;?php bloginfo('name'); ?&gt; &amp;gt;&amp;gt; &lt;?php the_title() ?&gt;"&gt;&lt;img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/delicious.gif" alt="del.icio.us" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
                &lt;a title="Submit To Digg" href="http://digg.com/submit?phase=2&amp;amp;url=&lt;?php the_permalink() ?&gt;" &gt;&lt;img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/digg.gif" alt="Digg" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
                &lt;a title="Save To FURL" href="http://www.furl.net/storeIt.jsp?t=&lt;?php the_title() ?&gt;;u=&lt;?php the_permalink() ?&gt;" &gt;&lt;img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/frul.gif" alt="FURL" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
                &lt;a title="Save to Yahoo! My Web 2.0" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=&lt;?php the_title() ?&gt;;u=&lt;?php the_permalink() ?&gt;"&gt;&lt;img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/yahoomyweb.jpg" alt="Yahoo! My Web 2.0" border="0"&gt;&lt;/a&gt;&amp;nbsp;|&amp;nbsp;
                &lt;a title="Save to Reddit" href="http://reddit.com/submit?url=&lt;?php the_permalink() ?&gt;;title=&lt;?php the_title() ?&gt;" &gt;&lt;img src="http://www.answermysearches.com/wp-content/themes/cleanbreeze/images/reddit_btn.gif" alt="Reddit" border="0"&gt;&lt;/a&gt;
            &lt;/div&gt;

            &lt;div class="feedback"&gt;
                &lt;?php link_pages('&lt;span class="pagelink"&gt;Pages: ', '&lt;/span&gt; | ', 'number'); ?&gt;&amp;nbsp;
                &lt;a href="&lt;?php trackback_url(display); ?&gt;" title="Trackback URI"&gt;&lt;strong&gt;Trackback&lt;/strong&gt;&lt;/a&gt;&amp;nbsp;
                &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent link to &lt;?php the_title(); ?&gt;"&gt;&lt;img src="&lt;?php bloginfo('template_url'); ?&gt;/images/link.gif" border="0" alt="Permanent link to &lt;?php the_title(); ?&gt;" /&gt; Permalink&lt;/a&gt;
                &lt;?php comments_popup_link('&lt;img src="'.get_bloginfo('template_url').'/images/comments.gif" alt="Comments Icon" /&gt; Post your comments &amp;#187;', '  &lt;img src="'.get_bloginfo('template_url').'/images/comments.gif" alt="Comments Icon" /&gt; 1 Comment &amp;#187;', '  &lt;img src="'.get_bloginfo('template_url').'/images/comments.gif" alt="Comments Icon" /&gt; % Comments &amp;#187;'); ?&gt;&amp;nbsp;
                &lt;img src="&lt;?php bloginfo('template_url'); ?&gt;/images/filed.gif" alt="Category Icon" /&gt; Filed under: &lt;?php if (function_exists('the_nice_category')) the_nice_category(); else the_category(', '); ?&gt;
            &lt;/div&gt;
            &lt;!-- &lt;?php trackback_rdf(); ?&gt; --&gt;
        &lt;/div&gt;
        &lt;?php comments_template(); ?&gt;
    &lt;?php endwhile; ?&gt;
    &lt;?php if (function_exists('updateBlogTimePNG')) : ?&gt;&lt;div id="blogtimes"&gt;&lt;img src="/wp-images/blogtimes.png" alt="blogtimes" width="480" height="65" /&gt;&lt;/div&gt;&lt;?php endif; ?&gt;
&lt;/div&gt;
&lt;?php get_sidebar(); ?&gt;&lt;?php get_footer(); ?&gt;
</pre>
<p>Now after you&#8217;ve saved those changes you should be able to see the links at the end of each post.
</p>
</p>
</li>
<li>
<p>The final step which is optional is to edit the style.css file in your theme&#8217;s directory to handle the new class &#8220;spreadtheword&#8221;.<br />
Here&#8217;s what I added to my stylesheet:</p>
<pre>
.spreadtheword {
    text-align: right;
    clear: both;
    font-size: 10px;
    padding-bottom: 10px;
}
</pre>
</p>
</li>
</ol>
<p>And that&#8217;s it.  Good luck, and feel free to post questions or improvements in the comments section.</p>
<p>Hmm, and if you&#8217;re really ambitious go ahead and make a plugin that does this for all of this for us.  </p>
<p>And of course feel free to push the del.icio.us, digg, reddit,et al buttons below <img src='http://www.answermysearches.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<hr />
<em>Updates, We&#8217;ve got updates:</p>
<ol>
<li><a href="http://www.ifeedreaders.com/social-creator/">This generator looks promising.</a>  It claims to do what I do here but for a lot more services and supports WordPress.</li>
<li>I removed these links from this this site because no one was using them <img src='http://www.answermysearches.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> .  Instead of questioning the quality of my own posts, I made up the theory that anyone who cares enough to post something to one of these sites already has the bookmarkletts etc to do it and doesn&#8217;t need these links.</li>
<li>
The kind folks at reddit have provided a <a href="http://www.answermysearches.com/wp-content/uploads/2006/01/reddit_images.html">few more button images</a> to choose from.
</li>
<li>
The Digg button seems to always prompt to add a new digg even if the link is already dugg.  I&#8217;m looking into this.</li>
</ol>
<p></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.answermysearches.com/how-to-add-digg-this-reddit-this-et-al-links-to-wordpress-posts/3/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

