<?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>Houston Web Design &#38; Development &#187; Social Media</title>
	<atom:link href="http://www.jbwebdev.com/blog/tag/social-media/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jbwebdev.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 04 Aug 2010 21:12:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding Social Media Icons On Certain Posts</title>
		<link>http://www.jbwebdev.com/blog/social-media-icons/</link>
		<comments>http://www.jbwebdev.com/blog/social-media-icons/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 00:19:17 +0000</pubDate>
		<dc:creator>Jon B</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[mixx]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Stumble Upon]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.jbwebdev.com/blog/?p=416</guid>
		<description><![CDATA[There are many WordPress plugins out there that allow you to display various social media buttons on your posts making it very simple for your readers to share and submit your article to various social media websites. While this is a great way to promote your blog posts, the buttons do not serve a purpose [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jbwebdev.com/blog/wp-content/uploads/2009/07/social-media.jpg" alt="social-media" title="social-media" width="250" height="250" class="right size-full wp-image-417" />There are many <a href="http://www.jbwebdev.com/blog/wordpress/">WordPress</a> plugins out there that allow you to display various social media buttons on your posts making it very simple for your readers to share and submit your article to various social media websites.</p>
<p>While this is a great way to promote your blog posts, the buttons do not serve a purpose if you simply have an announcement to make on a post.</p>
<p>It would be great if we can turn the option on and off as needed, right?. Well by using WordPress&#8217; custom fields and a little bit of PHP coding, we can display or not display these social media icons.</p>
<p><span id="more-416"></span></p>
<h2>Let&#8217;s get to it</h2>
<p><strong>Step 1</strong> &#8211; Download the <a href="http://sexybookmarks.net/">SexyBookmarks</a> plugin, upload it into your plugins folder and activate it.</p>
<p><strong>Step 2</strong> &#8211; Go into the plugin settings and modify the settings. You can reorder the icons by clicking and dragging. Check mark the ones you want to display.</p>
<p><img src="http://www.jbwebdev.com/blog/wp-content/uploads/2009/07/social11.jpg" alt="social1" title="social1" width="544" height="232" class="alignnone size-full wp-image-434" /></p>
<p>In the <strong>Placement</strong> option, select <strong>Manually Insert</strong>.</p>
<p><img src="http://www.jbwebdev.com/blog/wp-content/uploads/2009/07/social21.jpg" alt="social2" title="social2" width="544" height="232" class="alignnone size-full wp-image-435" /></p>
<p><strong>Step 3</strong> &#8211; Go into your Themes folder and find single.php. Open the file and locate The following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>The above code displays the title of your blog post. If you want the social media icons to appear right above title, then copy the code below and place it before the title.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;socialmedia&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> 
     <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'selfserv_sexy'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> selfserv_sexy<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>If you want the plugin to display at the bottom of your post, then paste the above code right after:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>Step 4</strong> &#8211; In the Admin panel, open up one of your posts or create a new one.  Scroll down to the Custom Fields section, click Enter New, name it <strong>socialmedia</strong> and give it a value of 1 or yes or whatever value you prefer, it really doesn&#8217;t matter as long as you input a value in there. Click the Add Custom field button to save it. You should now see a custom field called social media with a value of 1 or whatever value you chose. </p>
<p><img src="http://www.jbwebdev.com/blog/wp-content/uploads/2009/07/social3.jpg" alt="social3" title="social3" width="540" height="169" class="alignnone size-full wp-image-445" /></p>
<p>From now on whenever you want to display your social media icons, simply scroll down to the Custom Fields section, click on the name drop-down, select <strong>socialmedia</strong> and give it any value.</p>
<p><img src="http://www.jbwebdev.com/blog/wp-content/uploads/2009/07/social4.jpg" alt="social4" title="social4" width="540" height="169" class="alignnone size-full wp-image-446" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jbwebdev.com/blog/social-media-icons/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>11 Things Not To Tweet About</title>
		<link>http://www.jbwebdev.com/blog/11-things-not-to-tweet-about/</link>
		<comments>http://www.jbwebdev.com/blog/11-things-not-to-tweet-about/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 17:33:07 +0000</pubDate>
		<dc:creator>Jon B</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jbwebdev.com/blog/?p=366</guid>
		<description><![CDATA[We all know that Twitter is currently the KING of Social Media dethroning Facebook by a large margin. I enjoy using Twitter on a daily basis, sharing stories, finding great links, and connecting with random people from across the globe. It was great in the beginning but as it becomes over-saturated with users I&#8217;m seeing [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://jbwebdev.com/blog/wp-content/uploads/2009/04/twitter-logo.jpg" alt="Twitter" title="Twitter" width="200" height="199" class="right" />We all know that <strong><a href="http://twitter.com/JONxBLAZE">Twitter</a></strong> is currently the KING of Social Media dethroning <strong>Facebook</strong> by a large margin. I enjoy using Twitter on a daily basis, sharing stories, finding great links, and connecting with random people from across the globe.</p>
<p>It was great in the beginning but as it becomes over-saturated with users I&#8217;m seeing more and more non-sense Tweets&#8230;</p>
<p>For all the Twitter newbies out there, there are just things you should not Tweet about:</p>
<p><strong>1</strong> &#8211; You don&#8217;t have to tweet about every single second of your boring life.</p>
<p><strong>2</strong> &#8211; Most users don&#8217;t really care if your dog got hit by a car and lost one of its legs.</p>
<p><strong>3</strong> &#8211; Don&#8217;t ask what you should eat for breakfast, lunch or dinner.</p>
<p><strong>4</strong> &#8211; Leave your depression state of mind out of Twitter.</p>
<p><strong>5</strong> &#8211; Don&#8217;t ask what you should wear today.</p>
<p><strong>6</strong> &#8211; Don&#8217;t <strong>Twitpic </strong>yourself asking if you look OK today.</p>
<p><strong>7</strong> &#8211; Don&#8217;t send out a link to your favorite porn site.</p>
<p><strong>8</strong> &#8211; No more Rick-rolling please&#8230;it&#8217;s gotten quite old!</p>
<p><strong>9</strong> &#8211; Avoid 1, 2, or 3 word Tweets, we have no idea what you mean.</p>
<p><strong>10</strong> &#8211; Stop bitchin&#8217; about how slow Twitter has been.</p>
<p><strong>11</strong> &#8211; I get it, you&#8217;re coffee was too strong, no need to Tweet about it.</p>
<p>Follow me at <a href="http://twitter.com/JONxBLAZE">www.twitter.com/JONxBLAZE</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jbwebdev.com/blog/11-things-not-to-tweet-about/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>6 Simple Ways To Give Thanks To Bloggers</title>
		<link>http://www.jbwebdev.com/blog/6-simple-ways-to-give-thanks-to-bloggers/</link>
		<comments>http://www.jbwebdev.com/blog/6-simple-ways-to-give-thanks-to-bloggers/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 05:16:04 +0000</pubDate>
		<dc:creator>Jon B</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://jbwebdev.com/blog/?p=109</guid>
		<description><![CDATA[Every now and then we all STUMBLE on a blog that simply provides exceptional content and in depth information. I myself have read thousands of blogs, there&#8217;s a lot of crappy ones out there, but a great number of good ones as well. Writing a blog post is very easy, anybody who has fingers can [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right" title="Thank You Bloggers" src="http://jbwebdev.com/blog/wp-content/uploads/2008/08/thanks.jpg" alt="Thank You Bloggers" />Every now and then we all STUMBLE on a blog that simply provides exceptional content and in depth information. I myself have read thousands of blogs, there&#8217;s a lot of crappy ones out there, but a great number of good ones as well. Writing a blog post is very easy, anybody who has fingers can pretty much post about anything and everything one can possibly imagine. To me a quality blog post is one that provides unbiased information, well written, and keeps me interested in the subject matter.<br />
<span id="more-109"></span><br />
So as a reader, what exactly do you do to give thanks to bloggers who has spent their precious time providing information to you? Well here&#8217;s what I would do:</p>
<p><strong>1 &#8211; Contact The Blogger</strong><br />
I would get in touch with a blogger to let them know how much I enjoyed their article. Some bloggers will not leave an email address or contact form on their site, at that point I would simply leave them a thank you comment.</p>
<p><strong>2 &#8211; Link Love</strong><br />
Whenever I STUMBLE on a blog that is just full of great articles, I would link to that site and add them to my blogroll.</p>
<p><strong>3 &#8211; The Stumble Upon Effect</strong><br />
Stumble Upon is a great service and it is a wonderful article promotion tool. I always make sure I give a thumbs up on blogs that I enjoy reading.</p>
<p><strong>4 &#8211; Submit and Vote </strong><br />
Everybody knows that Social Media is a great source for generating traffic to a site. If the article you are reading is really, really good, chances are it&#8217;s already been submitted to sites like <a href="http://www.digg.com">Digg</a>, <a href="http://www.mixx.com">Mixx</a>, <a href="http://www.reddit.com">Reddit</a>, <a href="http://www.propeller.com">Propeller</a>, <a href="http://buzz.yahoo.com/">Yahoo Buzz</a>, etc. If that&#8217;s the case, then go ahead and vote the article up.</p>
<p><strong>5 &#8211; Give Out Some Change</strong><br />
This is probably everyone&#8217;s favorite since it involves money. Make a courteous donation to the blogger. I have received donations on this blog in the past and let me tell you, it is a great feeling! I went out and bought a bag of Cheetos.</p>
<p><strong>6 &#8211; Add Cents???</strong><br />
<strike>This is actually my favorite one, whenever I see an ad, I make sure I give it a click if I feel like the blog has given me something I can walk away with. And don&#8217;t just click on the ads for the sake of clicking, take time to read what the ad is offering, you might just find something that is of interest to you. Just don&#8217;t overdo the clicks or the blogger will be penalized for click fraud. [ I am in no way advocating the clicking of any ads ]</strike></p>
<p>So next time you read and enjoyed a random blog post, you&#8217;ll know what to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jbwebdev.com/blog/6-simple-ways-to-give-thanks-to-bloggers/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
