<?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>gatecitymedia.com</title>
	<atom:link href="http://gatecitymedia.com/feed" rel="self" type="application/rss+xml" />
	<link>http://gatecitymedia.com</link>
	<description>WordPress, Web Hosting, Graphic Design</description>
	<lastBuildDate>Fri, 18 May 2012 13:33:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WP e-Commerce Coupon Pricing Issue</title>
		<link>http://gatecitymedia.com/wordpress/wp-e-commerce-coupon-pricing-issue</link>
		<comments>http://gatecitymedia.com/wordpress/wp-e-commerce-coupon-pricing-issue#comments</comments>
		<pubDate>Fri, 18 May 2012 13:31:23 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WP e-Commerce]]></category>
		<category><![CDATA[WPSC]]></category>
		<category><![CDATA[WPSC Coupon]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=168</guid>
		<description><![CDATA[If you use WP e-Commerce and the Coupon feature, you have also realized that the discounted price displays at the bottom of the page, instead of near the top or even in the Subtotal of the widget. To fix this, you have to make a few customizations inside the PHP of the plugin. Go to [...]]]></description>
			<content:encoded><![CDATA[<p>If you use WP e-Commerce and the Coupon feature, you have also realized that the discounted price displays at the bottom of the page, instead of near the top or even in the Subtotal of the widget.</p>
<p>To fix this, you have to make a few customizations inside the PHP of the plugin.</p>
<pre>Go to the plugin of wp-e-commerce, then look for the 2 files:
wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-shopping_cart_page.php
wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-cart_widget.php</pre>
<p>Once those files are open, search for the function <em><strong>wpsc_cart_total_widget</strong></em></p>
<p>Here you will now see some parameters that are either True or False, and see 3 of them, so it will probably look like this:</p>
<p>wpsc_cart_total_widget( false, false , false );</p>
<blockquote><p>Description: This template tag is used to display cart total excluding shipping, tax or coupons. This tag accepts three parameters the first is if you want to include the shipping price (default is true), second is to include tax (default to true) and the third is to include coupons in the price (default true)<br />
<a href="http://docs.getshopped.org/documentation/wpsc_cart_total_widget/" target="_blank">From here &#8211; Docs from GetShopped</a></p></blockquote>
<p>From here, simply change the last parameter to &#8220;true&#8221; in both files, save, and upload. You should now see the change:</p>
<p>wpsc_cart_total_widget( false, false , true );</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/wp-e-commerce-coupon-pricing-issue/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing WordPress Editor Font</title>
		<link>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font</link>
		<comments>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font#comments</comments>
		<pubDate>Mon, 25 Jul 2011 12:08:46 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=138</guid>
		<description><![CDATA[Wish you had control over the font used by WordPress editor? No problem, the following code will allow you to change it. Simply paste it to your theme functions.php file. You can define which font to use on line 5. add_action( 'admin_head-post.php', 'cwc_fix_html_editor_font' ); add_action( 'admin_head-post-new.php', 'cwc_fix_html_editor_font' ); function cwc_fix_html_editor_font() { ?&#62; &#60;style type="text/css"&#62;#editorcontainer #content, [...]]]></description>
			<content:encoded><![CDATA[<p>Wish you had control over the font used by WordPress editor?</p>
<p>No problem, the following code will allow you to change it. Simply paste it to your theme <span style="color: #ff0000;"><code>functions.php</code></span> file. You can define which font to use on <strong>line 5</strong>.</p>
<hr />
<pre>add_action( 'admin_head-post.php', 'cwc_fix_html_editor_font' );
add_action( 'admin_head-post-new.php', 'cwc_fix_html_editor_font' );

function cwc_fix_html_editor_font() { ?&gt;

&lt;style type="text/css"&gt;#editorcontainer #content, #wp_mce_fullscreen { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; }&lt;/style&gt;
&lt;?php }</pre>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Your WordPress RSS Feed</title>
		<link>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed</link>
		<comments>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed#comments</comments>
		<pubDate>Tue, 19 Jul 2011 12:21:25 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=134</guid>
		<description><![CDATA[By default WordPress will include the popular RSS functionnality, which is great for most sites. But there are times when having RSS feeds may become a bit confusing for your visitors, so you can use this easy fix. This code will totally disable RSS feeds (As well as other formats) from your site. Just paste [...]]]></description>
			<content:encoded><![CDATA[<p>By default WordPress will include the popular RSS functionnality, which is great for most sites. But there are times when having RSS feeds may become a bit confusing for your visitors, so you can use this easy fix.</p>
<p>This code will totally disable RSS feeds (As well as other formats) from your site. Just paste the code into <span style="color: #ff0000;"><code>functions.php</code></span>, and you’re done.</p>
<pre></pre>
<hr />
<p><code><br />
function cwc_disable_feed() {<br />
wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );<br />
}<br />
add_action('do_feed', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rdf', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rss', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rss2', 'cwc_disable_feed', 1);<br />
add_action('do_feed_atom', 'cwc_disable_feed', 1);<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nivo Slider Fixed for IE</title>
		<link>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie</link>
		<comments>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie#comments</comments>
		<pubDate>Fri, 17 Jun 2011 17:04:08 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=114</guid>
		<description><![CDATA[Have you recently downloaded an ElegantThemes WordPress theme, or noticed your theme doesn&#8217;t work correctly with Internet Explorer (IE)? Recently our very own, Kevin Shoffner, reported the issue to Elegant Themes regarding their Chameleon theme and we wanted to share the fix with you until ET has resolved the issue. Go to the theme folder [...]]]></description>
			<content:encoded><![CDATA[<p>Have you recently downloaded an <a href="www.elegantthemes.com" target="_blank">ElegantThemes</a> WordPress theme, or noticed your theme doesn&#8217;t work correctly with Internet Explorer (IE)?</p>
<p>Recently our very own, Kevin Shoffner, reported the issue to Elegant Themes regarding their <a href="http://www.elegantthemes.com/preview/Chameleon/" target="_blank">Chameleon theme</a> and we wanted to share the fix with you until ET has resolved the issue.</p>
<p><span id="more-114"></span></p>
<p>Go to the theme folder directory and file <strong>/js/et_nivo.js</strong></p>
<p>Once there, you need to make sure all of the JavaScript variables are actually defined properly (put a <strong>var</strong> in front of them.)</p>
<p>Below is the entire FIXED <strong>et_nivo.js</strong> file that works:</p>
<div><strong>Code:</strong></div>
<blockquote>
<div>(function(){<br />
var $featured_content = jQuery(&#8216;#featured #slides&#8217;),<br />
et_featured_slider_auto = jQuery(&#8220;meta[name=et_featured_slider_auto]&#8220;).attr(&#8216;content&#8217;),<br />
et_featured_auto_speed = jQuery(&#8220;meta[name=et_featured_auto_speed]&#8220;).attr(&#8216;content&#8217;);if ( $featured_content.length ){<br />
var et_nivo_slider_options = {<br />
pauseTime: et_featured_auto_speed,<br />
pauseOnHover:true<br />
}<br />
if ( et_featured_slider_auto != 1 ) et_nivo_slider_options.manualAdvance = false;</p>
<p>$featured_content.nivoSlider(et_nivo_slider_options);<br />
}<br />
})();</p>
</div>
<p>So, basically &#8211; just make sure around line 2 ($featured_content) and line 7 (et_nivo_slider_options) has a &#8220;var &#8221; in front of them, upload again, and you should be Golden.</p></blockquote>
<p>&nbsp;</p>
<p><em>Update, 8/22/2011:  Elegant Themes has now updated their version, and this should no longer be a problem</em></p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Connections WordPress to Facebook Fan Pages</title>
		<link>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages</link>
		<comments>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages#comments</comments>
		<pubDate>Tue, 14 Jun 2011 15:39:56 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[social media]]></category>
		<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=101</guid>
		<description><![CDATA[Lots of clients ask &#8211; &#8220;How can I get my WordPress Website Posts to Appear on my Facebook Fan Page?&#8221; With Facebook constantly changing, this may seem like an impossible effort &#8211; but once you have learned the Basics, you will be able to do it (as long as Facebook allows it.) Start by logging [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of clients ask &#8211; &#8220;How can I get my WordPress Website Posts to Appear on my Facebook Fan Page?&#8221;</p>
<p>With Facebook constantly changing, this may seem like an impossible effort &#8211; but once you have learned the Basics, you will be able to do it (as long as Facebook allows it.)</p>
<hr />
<p>Start by logging in as yourself on Facebook, and you will be logged in as yourself/individual.</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/1.jpg"><img class="size-full wp-image-102 alignnone" title="1" src="http://gatecitymedia.com/wp-content/uploads/2011/06/1.jpg" alt="" width="369" height="109" /></a></p>
<p>Next navigate to your Fan Page (I will be using the Gatecity Media Designs Fan Page in my example)</p>
<p>&nbsp;</p>
<p>Now click on “Use Facebook As <em>whatever your page is called</em>”</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/2.jpg"><img class="size-full wp-image-103 alignnone" title="2" src="http://gatecitymedia.com/wp-content/uploads/2011/06/2.jpg" alt="" width="265" height="266" /></a></p>
<p>&nbsp;</p>
<p>Once you click that, you are logged in as your Fan Page, instead of yourself.</p>
<p>Click on <strong><em>Edit Page</em></strong> button <a href="http://gatecitymedia.com/wp-content/uploads/2011/06/3.jpg"><img class="alignnone size-full wp-image-104" title="3" src="http://gatecitymedia.com/wp-content/uploads/2011/06/3.jpg" alt="" width="178" height="57" /></a></p>
<p>Then on <strong>APPS</strong> from the navigation</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/4.jpg"><img class="alignnone size-full wp-image-105" title="4" src="http://gatecitymedia.com/wp-content/uploads/2011/06/4.jpg" alt="" width="196" height="234" /></a></p>
<p>&nbsp;</p>
<p>Click on “Go to App” for <strong>NOTES<a href="http://gatecitymedia.com/wp-content/uploads/2011/06/5.jpg"><img class="alignnone size-full wp-image-106" title="5" src="http://gatecitymedia.com/wp-content/uploads/2011/06/5.jpg" alt="" width="253" height="72" /></a> </strong></p>
<p>You should now be on your Fan Page’s <strong><em>Notes Page</em></strong>, so you want to scroll down and look on the left side of Facebook for something regarding <strong><em>Import Settings</em></strong></p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/6.jpg"><img class="alignnone size-full wp-image-107" title="6" src="http://gatecitymedia.com/wp-content/uploads/2011/06/6.jpg" alt="" width="198" height="239" /></a></p>
<p>Paste your Blog’s feed (RSS or XML), and with WordPress it is usually something like <a href="http://yourdomain.com/feed">http://yourdomain.com/feed</a> (ours is http://gatecitymedia.com/feed)</p>
<p>Once put in, you are go to go from then on.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><em>Check back from time to time, because these instructions may be adjusted if Facebook changes</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Custom Template Pages</title>
		<link>http://gatecitymedia.com/wordpress/creating-custom-template-pages</link>
		<comments>http://gatecitymedia.com/wordpress/creating-custom-template-pages#comments</comments>
		<pubDate>Mon, 14 Feb 2011 17:33:22 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[custom pages]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=90</guid>
		<description><![CDATA[Let&#8217;s say you wanted a WordPress page that did nothing more than show all POSTS under one Category in your WordPress site to be displayed on one page&#8230; How hard could that be?  Not too bad, actually. You will need to go to your FTP program, where your current theme is located, then duplicate the [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you wanted a WordPress page that did nothing more than show all POSTS under one Category in your WordPress site to be displayed on one page&#8230;</p>
<p>How hard could that be?  <em>Not too bad, actually.</em></p>
<ol>
<li>You will need to go to your FTP program, where your current theme is located, then duplicate the &#8220;page.php&#8221; and call it something like &#8220;category-list.php&#8221;</li>
<li>Now, go to your Editor within your WP Dashboard</li>
<li>From here you just need to put a little custom code in your newly created page</li>
<li>At the top of the file put the following (I usually put directly before seeing <strong>&lt;?php get_header(); ?&gt;</strong>:</li>
<blockquote>
<pre>&lt;?php
/*
Template Name: Category
*/
?&gt;</pre>
</blockquote>
<li>Now you need this code inside your new file, of course changing the &#8220;<strong>cat=</strong>&#8221; to whatever number the category you want it to be:</li>
<blockquote>
<pre>&lt;?php
query_posts('cat=1');
while (have_posts()) : the_post();
the_content();
endwhile;
?&gt;</pre>
</blockquote>
</ol>
<p>You will now be able to go to <strong>Pages >> Add New >></strong> and be able to select the Template &#8220;Category&#8221; as a template.  Give the Page a name, and you are good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/creating-custom-template-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Flush DNS</title>
		<link>http://gatecitymedia.com/technical-support/how-to-flush-dns</link>
		<comments>http://gatecitymedia.com/technical-support/how-to-flush-dns#comments</comments>
		<pubDate>Wed, 19 Jan 2011 12:07:24 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=80</guid>
		<description><![CDATA[Most DNS clients cache the results of name resolution requests. This means that the DNS clients will temporarily store the website names that you have been visiting lately. This process speeds up name resolution if multiple lookups are done to the same address, such as is common when browsing the web. So, if you visit [...]]]></description>
			<content:encoded><![CDATA[<p>Most DNS clients cache the results of name resolution requests. This means that the DNS clients will temporarily store the website names that you have been visiting lately. This process speeds up name resolution if multiple lookups are done to the same address, such as is common when browsing the web. So, if you visit Google.com the second time, the DNS client will already have the name mapped and hence will retrieve the mapping quickly.</p>
<p>Sometimes a bad DNS entry will be cached and you will need to either flush the DNS cache to get rid of it, or wait up to 24 hours &#8211; 2 weeks for it to be dropped from the cache automatically.</p>
<p>Given below is a comprehensive step-by-step process to flush the DNS.</p>
<h2>How to Flush DNS in Microsoft Windows</h2>
<p>In Microsoft Windows, you can use the command ipconfig /flushdns to flush the DNS resolver cache. Open the command prompt and type the following:</p>
<p><code>C:&gt;ipconfig /flushdns</code></p>
<blockquote><p>Windows IP Configuration<br />
Successfully flushed the DNS Resolver Cache.</p></blockquote>
<p>The above command will completely flush the DNS, deleting any incorrect entries too. You can also use the command ipconfig /displaydns to view the DNS resolver cache.</p>
<h2>Flush DNS in Mac OSX</h2>
<p>In Mac OSX Leopard, you can use the command <code>dscacheutil -flushcache</code> to flush the DNS resolver cache:</p>
<blockquote><p><code>bash-2.05a$ dscacheutil -flushcache</code></p></blockquote>
<p>In Mac OSX versions 10.5.1 and before, the command <code>lookupd -flushcache</code> performed the same task:</p>
<blockquote><p><code>bash-2.05a$ lookupd -flushcache</code></p></blockquote>
<h2>Flush DNS in Linux</h2>
<p>In Linux, the nscd daemon manages the DNS cache. To flush the DNS cache, restart the nscd daemon. To restart the nscd daemon, use the command <code>/etc/init.d/nscd restart`</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/technical-support/how-to-flush-dns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing Browser Cache</title>
		<link>http://gatecitymedia.com/technical-support/clearing-browser-cache</link>
		<comments>http://gatecitymedia.com/technical-support/clearing-browser-cache#comments</comments>
		<pubDate>Fri, 14 Jan 2011 15:52:40 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=72</guid>
		<description><![CDATA[How do I clear my web browser&#8217;s cache? Each time you access a file through your web browser, the browser caches it (stores it). In this way, the files (including any images on the page) do not have to be retrieved anew from the remote web site each time you click the Back or Forward [...]]]></description>
			<content:encoded><![CDATA[<h1>How do I clear my web browser&#8217;s cache?</h1>
<p>Each time you access a file through your web browser, the browser caches it (stores it). In this way, the files (including any images on the page) do not have to be retrieved anew from the remote web site each time you click the Back or Forward buttons. You should clear the cache if you expect to see changes on a website.</p>
<h2>Internet Explorer 8</h2>
<p>From the <code>Tools</code> menu, select <code>Delete Browsing History....</code><br />
Next to &#8220;Temporary Internet Files&#8221;, click Delete files&#8230;.<br />
Click Yes, and then click Close to exit.</p>
<blockquote><p><em><br />
I don&#8217;t see those options.<br />
</em><br />
From the Tools dropdown, select Internet Options.<br />
Under the General tab, locate &#8220;Browser history&#8221; and click Delete&#8230;.<br />
Check the box next to &#8220;Temporary Internet Files&#8221;.<br />
Click Delete, and then click OK to exit.</p></blockquote>
<hr />
<h2>Firefox 3 for Windows and Mac OS X</h2>
<p>In Firefox, from the Tools menu, select Clear Recent History&#8230;.<br />
Choose Everything from the drop-down and make sure Cache is checked, and then click Clear Now.</p>
<hr />
<h2>Safari</h2>
<p>From the Safari menu, select Empty Cache&#8230;.<br />
When prompted, click Empty to confirm that you want to empty the cache.</p>
<hr /><strong>Chrome</strong><br />
Click the wrench icon  on the right side next to the address bar, then click on Options&#8230; Clear Browsing Data&#8230;.<br />
When prompted, select only Cache and click Clear Browsing Data to finish.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/technical-support/clearing-browser-cache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding Facebook Video &#8211; WordPress</title>
		<link>http://gatecitymedia.com/wordpress/embedding-facebook-video-wordpress</link>
		<comments>http://gatecitymedia.com/wordpress/embedding-facebook-video-wordpress#comments</comments>
		<pubDate>Thu, 18 Nov 2010 21:50:13 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[social media]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[embedding video]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[no-plugins]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=143</guid>
		<description><![CDATA[So you don&#8217;t want to use extra plugins, I don&#8217;t blame you. Here&#8217;s a quick and easy way to do it: &#160; Facebook does not provide any embedding code as other video hosting sites like youtube do. You can easily upload and share your videos on facebook; but if you want to share these videos [...]]]></description>
			<content:encoded><![CDATA[<p>So you don&#8217;t want to use extra plugins, I don&#8217;t blame you.<br />
Here&#8217;s a quick and easy way to do it:</p>
<p>&nbsp;</p>
<p>Facebook does not provide any embedding code as other video hosting sites like youtube do. You can easily upload and share your videos on facebook; but if you want to share these videos with your friends or readers without any plugin on your blog, here is a very simple solution. All you have to open the video in facebook, copy the video number and paste in the following code.</p>
<p>&nbsp;</p>
<p><strong>STEP 1:</strong> Open the video and the URL of the video will be like this one:</p>
<p><strong>STEP 2:</strong> Copy the video number (between <span style="color: #ff0000;">=</span> and <span style="color: #ff0000;">&amp;</span> signs)</p>
<p><strong>STEP 3:</strong> Open the post-editor in your wordpress blog and click on HTML</p>
<p><img src="http://external.ak.fbcdn.net/safe_image.php?d=AQDGAiZiXC9H_P7Q&amp;url=http%3A%2F%2Fwww.shoutpedia.com%2Fwp-content%2Fuploads%2F2009%2F09%2Ffacebook-video-21.PNG" alt="" /><strong>STEP 4: </strong>Copy paste the following code in HTML editor by replacing the <span style="color: #ff0000;">xxx</span> with video number.</p>
<p>&nbsp;</p>
<pre><span style="color: #0000ff;">&lt;object width="400" height="224" &gt;</span>
<span style="color: #0000ff;"> &lt;param name="allowfullscreen" value="true" /&gt;</span>
<span style="color: #0000ff;"> &lt;param name="allowscriptaccess" value="always" /&gt;</span>
<span style="color: #0000ff;"> &lt;param name="movie" value="http://www.facebook.com/v/xxx" /&gt;</span>
<span style="color: #0000ff;"> &lt;embed src="http://www.facebook.com/v/xxx" type="application/x-shockwave-flash"</span>
<span style="color: #0000ff;"> allowscriptaccess="always" allowfullscreen="true" width="400" height="224"&gt;</span>
<span style="color: #0000ff;"> &lt;/embed&gt;</span>
<span style="color: #0000ff;">&lt;/object&gt;</span></pre>
<p>&nbsp;</p>
<p><strong>STEP 5:</strong> All is done, you can also change the width and height of the video by changing the width and height in first line of code.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/embedding-facebook-video-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fall Savings &#8211; Over $100 today!</title>
		<link>http://gatecitymedia.com/web-design/fall-savings-over-100-today</link>
		<comments>http://gatecitymedia.com/web-design/fall-savings-over-100-today#comments</comments>
		<pubDate>Wed, 13 Oct 2010 19:44:54 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[graphic design]]></category>
		<category><![CDATA[technical support]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=66</guid>
		<description><![CDATA[If you are a current client and refer a design/website paying client to us between now and December 31, 2010: You will get $100 credit for future purchases&#8230; If you refer a web-hosting client to us between now and December 31, 2010: You will get $30 credit for future purchases&#8230;]]></description>
			<content:encoded><![CDATA[<h3>If you are a current client and refer a design/website paying client to us between now and December 31, 2010:</h3>
<p>You will get $100 credit for future purchases&#8230;</p>
<h3>If you refer a web-hosting client to us between now and December 31, 2010:</h3>
<p>You will get $30 credit for future purchases&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/web-design/fall-savings-over-100-today/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

