<?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>Expand Social Media&#187; wordpress</title>
	<atom:link href="http://expandsm.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://expandsm.com</link>
	<description>Be seen.</description>
	<lastBuildDate>Thu, 02 Feb 2012 00:27:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>passive cross-promotion on your blog</title>
		<link>http://expandsm.com/wordpress-passive-cross-promotion-on-your-blog</link>
		<comments>http://expandsm.com/wordpress-passive-cross-promotion-on-your-blog#comments</comments>
		<pubDate>Fri, 25 Feb 2011 18:54:50 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[blog design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[add site feed into wordpress post. how to rss feed wordpress post]]></category>
		<category><![CDATA[script rss post wordpress]]></category>

		<guid isPermaLink="false">http://expandsm.com/?p=346</guid>
		<description><![CDATA[Few bloggers write at only one site. This is an easy way to show your readers your other work or create leads for your business. No plugins needed. If you are a coding newbie, jump to the tutorial I&#8217;m sure some of you want to copy and run. If you came for the code only- [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="show rss feed inside wordpress posts" src="http://expandsm.com/wp-content/uploads/mamikaze-below-post-cross-promotion-300x221.png" alt="" width="300" height="221" />Few bloggers write at only one site. This is an easy way to show your readers your other work or create leads for your business. No plugins needed.</p>
<p><strong>If you are a coding newbie, jump to the <a href="#tutorial">tutorial</a></strong></p>
<p>I&#8217;m sure some of you want to copy and run. <strong>If you came for the code only- here you go: </strong></p>
<pre class="brush: php; title: ; notranslate">
&amp;lt;h3 class=&quot;rss-promo&quot;&amp;gt;&amp;lt;!--?php _e('Recent news from Some-Other Blog:'); ?--&amp;gt;&amp;lt;/h3&amp;gt;
&amp;lt;!--?php // Get RSS Feed(s) include_once(ABSPATH . WPINC . '/feed.php'); // Get a SimplePie feed object from the specified feed source. $rss = fetch_feed('_RSS_FEED_URL_HERE_'); if (!is_wp_error( $rss ) ) : // Checks that the object is created correctly      // Figure out how many total items there are, but limit it to 5.      $maxitems = $rss---&amp;gt;get_item_quantity(5);
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss-&amp;gt;get_items(0, $maxitems);
endif;
?&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;!--?php if ($maxitems == 0) echo '
&amp;lt;li--&amp;gt;No items.
';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?&amp;gt;
&amp;lt;li&amp;gt;
&amp;lt;a href=&quot;&amp;lt;?php echo $item-&amp;gt;get_permalink(); ?&amp;gt;&quot;&amp;gt; title='&amp;lt;!--?php echo 'Posted '.$item---&amp;gt;get_date('j F Y | g:i a'); ?&amp;gt;'&amp;gt;
&amp;lt;!--?php echo $item---&amp;gt;get_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--?php endforeach; ?--&amp;gt;&amp;lt;/ul&amp;gt;
</pre>
<p>and the CSS</p>
<pre class="brush: css; title: ; notranslate">.custom .rss-promo h3, .rss-promo a { font-size: 0.75em; }</pre>
<h3><a id="tutorial">Tutorial</a></h3>
<p>Before we begin, you need:</p>
<ul>
<li>Text editor (Notepad for Windows, TextEdit works for Mac)</li>
<li>Custom.css from your theme (style.css if your theme does not have a custom stylesheet)</li>
<li>Single.php from your theme</li>
<li>Loop.php from your theme</li>
<li>RSS Feed URL of the site(s) to cross-promote</li>
</ul>
<ol>
<li><a href="#css">Paste the CSS</a></li>
<li><a href="#php">Copy the PHP</a></li>
<li><a href="#heading">Change the heading</a></li>
<li><a href="#feed">Change the feed</a></li>
<li><a href="#list">List length</a></li>
<li><a href="#option">No items option</a></li>
<li><a href="http://expandsm.com/2011/02/wordpress-passive-cross-promotion-on-your-blog/repeat">Lather, Rinse, Repeat</a></li>
</ol>
<h3><a id="css">Paste the CSS</a></h3>
<p>The gray lines you see on this screen will be altered.<br />
Copy and paste this line into your <em>custom.css</em> or <em>style.css</em></p>
<pre class="brush: css; collapse: false; title: ; notranslate">.custom .rss-promo h3, .rss-promo a { font-size: 0.75em; }</pre>
<h3><a id="php">Copy the PHP</a></h3>
<p>In your <em>loop.php</em> and <em>single.php</em> files, paste the code after<br />
<strong><!-- .entry-content --></strong></p>
<p>If your are have Thesis with Thesis Openhook, put it in <strong>thesis_hook_after_post</strong> and select <em>Execute PHP on this hook</em>.</p>
<pre class="brush: php; collapse: false; highlight: [1,5,8,14]; title: ; notranslate">
&amp;lt;h3 class=&quot;rss-promo&quot;&amp;gt;&amp;lt;!--?php _e('Recent news from Some-Other Blog:'); ?--&amp;gt;&amp;lt;/h3&amp;gt;
&amp;lt;!--?php // Get RSS Feed(s) include_once(ABSPATH . WPINC . '/feed.php'); // Get a SimplePie feed object from the specified feed source. $rss = fetch_feed('_RSS_FEED_URL_HERE_'); if (!is_wp_error( $rss ) ) : // Checks that the object is created correctly      // Figure out how many total items there are, but limit it to 5.      $maxitems = $rss---&amp;gt;get_item_quantity(5);
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss-&amp;gt;get_items(0, $maxitems);
endif;
?&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;!--?php if ($maxitems == 0) echo '
&amp;lt;li--&amp;gt;No items.
';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?&amp;gt;
&amp;lt;li&amp;gt;
&amp;lt;a href=&quot;&amp;lt;?php echo $item-&amp;gt;get_permalink(); ?&amp;gt;&quot;&amp;gt;        title='&amp;lt;!--?php echo 'Posted '.$item---&amp;gt;get_date('j F Y | g:i a'); ?&amp;gt;'&amp;gt;
&amp;lt;!--?php echo $item---&amp;gt;get_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--?php endforeach; ?--&amp;gt;&amp;lt;/ul&amp;gt;
</pre>
<h3><a id="heading">Change the heading</a></h3>
<p><img class="alignnone size-full wp-image-456" title="below-post-cross-promotion-h3" src="http://expandsm.com/wp-content/uploads/below-post-cross-promotion-h3.png" alt="" /><br />
<small><a href="#tutorial">Return to tutorial list</a></small></p>
<h3><a id="feed">Change the feed</a></h3>
<p>Input your site&#8217;s RSS feed link<br />
<img title="insert RSS link" src="http://expandsm.com/wp-content/uploads/below-post-cross-promotion-change-rss.png" alt="wordpress blog post rss feed javascript" /><br />
<small><a href="#tutorial">Return to tutorial list</a></small></p>
<h3><a id="list">List length</a></h3>
<p>Set your item amount up to 5.<br />
<img title="set list length" src="http://expandsm.com/wp-content/uploads/below-post-cross-promotion-max-items.png" alt="wordpress blog post rss feed javascript" /><br />
<small><a href="#tutorial">Return to tutorial list</a></small></p>
<h3><a id="option">No items option</a></h3>
<p>Show a backup link if no items are pulled.<br />
<img title="no items options" src="http://expandsm.com/wp-content/uploads/below-post-cross-promotion-no-items.png" alt="wordpress blog post rss feed javascript" /><br />
<small><a href="#tutorial">Return to tutorial list</a></small></p>
<h3><a id="repeat">Lather, Rinse, Repeat</a></h3>
<p>Pimp all your work by repeating the code between <code>&lt;?php</code> and <code>&lt;?php endforeach;?&gt;</code> with as many as you like. Keep the lists short if you want multiple sites listed.</p>
<p>Enjoy! Questions and troubleshooting welcome in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/wordpress-passive-cross-promotion-on-your-blog/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Essential WordPress Plugins</title>
		<link>http://expandsm.com/essential-wordpress-plugins</link>
		<comments>http://expandsm.com/essential-wordpress-plugins#comments</comments>
		<pubDate>Wed, 01 Dec 2010 09:00:14 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[social media]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[best wordpress plugins]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.expandsocialmedia.com/SEO/?p=298</guid>
		<description><![CDATA[This is the exhaustive list of the plugins I include in all WordPress + Thesis installs. I have chosen these based on 1) Compatibility with WordPress; 2) SEO benefits; 3) Social media integration. These plugins enhance every WordPress site. These are all compatible with Thesis theme. Please donate to the developers a tip if you [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="wordpress logo" src="http://expandsm.com/wp-content/uploads/2010/02/wordpress-grey-xl-150x150.png" alt="wordpress logo" width="150" height="150" />This is the exhaustive list of the plugins I include in all WordPress + Thesis installs. I have chosen these based on 1) Compatibility with WordPress; 2) SEO benefits; 3) Social media integration. These plugins enhance every WordPress site. These are all compatible with Thesis theme. Please donate to the developers a tip if you are able.</p>
<h3><a href="http://wordpress.org/extend/plugins/like/" target="_blank">Facebook Like Button</a></h3>
<p>Let your readers quickly share your content on Facebook with a simple click.</p>
<h3><a href="http://wordpress.org/extend/plugins/google-friend-connect-integration/">Google Friend Connect Integration</a></h3>
<p>Create a social community using Google Friend Connect. Easily add many different gadgets.</p>
<h3>WP Greet Box</h3>
<p>Display a different greeting message to your visitor depending on which site they are coming from.</p>
<h3><a href="http://wordpress.org/extend/plugins/tweetmeme/">TweetMeme Button</a></h3>
<p>Adds a button which easily lets you retweet your blog posts.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-ban/">WP-Ban</a></h3>
<p>Ban users by IP, IP Range, host name and referrer url from visiting your WordPress&#8217;s blog. <a href="http://www.sugarjonesblog.com/wp-content/plugins/wp-ban/ban-preview.php" target="_blank">My coup de grace.</a></p>
<h3><a href="http://expandsm.com/wordpress-passive-cross-promotion-on-your-blog">Extended Comment Options</a></h3>
<p>Allows you to close or open comments on batches of posts. You can schedule this automatically, too.</p>
<h3><a href="http://wordpress.org/extend/plugins/commentluv/">CommentLuv</a></h3>
<p>Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.</p>
<h3><a href="http://wordpress.org/extend/plugins/twitterlink-comments/">TwitterLink Comments</a></h3>
<p>Allow your commentators to include their Twitter username along with their comment so a follow-me link can be displayed with their details on the list. The plugin I have been using the longest, love me some <a href="http://twitter.com/fiddyp" target="_blank">@fiddyp.</a></p>
<h3><a href="http://wordpress.org/extend/plugins/replyme/">ReplyMe</a></h3>
<p>Brilliant! Send an email to author automatically while someone reply his comment.</p>
<h3><a href="http://wordpress.org/extend/plugins/gregs-threaded-comment-numbering/">Greg&#8217;s Threaded Comment Numbering</a></h3>
<p>Nested and numbered. Numbers comments sequentially and hierarchically; handles comments which are threaded, paged and/or reversed. Coders can call the function directly.</p>
<h3><a href="http://wordpress.org/extend/plugins/advanced-excerpt/" target="_blank">Advanced Excerpt</a></h3>
<p>Several improvements over WP&#8217;s default excerpt. The size of the excerpt can be limited using character or word count, and HTML markup is not removed by the excerpt editor.</p>
<h3><a href="http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=78483" target="_blank">Feedburner Feedsmith</a></h3>
<p>The plugin will detect all ways to access your feed and redirect them to your FeedBurner feed so you can track every possible subscriber.</p>
<h3><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemap Generator</a></h3>
<p>This plugin will generate a special XML sitemap which will help search engines to better index your blog.</p>
<h3><a href="http://wordpress.org/extend/plugins/si-contact-form/">Fast Secure Contact Form</a></h3>
<p>A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. Packed with settings and features.</p>
<h3><a href="http://wordpress.org/extend/plugins/stats/">WordPress.com Stats</a></h3>
<p>You can have simple, concise stats with no additional load on your server by plugging into WordPress.com&#8217;s stat system. You can have simple, concise stats with no additional load on your server by plugging into WordPress.com&#8217;s stat system.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a></h3>
<p>A very fast caching engine for WordPress that produces static HTML files. This plugin generates static HTML files from your dynamic WordPress blog. After a HTML file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.</p>
<h3><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/">Google Analytics for WordPress</a></h3>
<p>Track your WordPress site easily and with lots of metadata: views per author &amp; category, automatic tracking of outbound clicks and pageviews.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-auto-add-tags/">WP-Auto Add Tags</a></h3>
<p>Just install it and configure it through the plugin interface located in the Settings panel. As you publish or edit a post, the plugin gathers and sets the tags suitable for your post based, on your content.</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/essential-wordpress-plugins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Free Blackberry Apps</title>
		<link>http://expandsm.com/best-free-blackberry-apps</link>
		<comments>http://expandsm.com/best-free-blackberry-apps#comments</comments>
		<pubDate>Tue, 23 Nov 2010 09:00:27 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blackberry applications]]></category>
		<category><![CDATA[free blackberry apps]]></category>

		<guid isPermaLink="false">http://www.expandsocialmedia.com/SEO/?p=286</guid>
		<description><![CDATA[Take advantage of the free innovation for your Blackberry. There are hundreds of applications to help your manage your time more effectively. I can&#8217;t pass up the fun ones either. Here is a list of my favorites. Vlingo Intelligent voice recognition app includes SafeReader. Your incoming text and email messages are read to you while [...]]]></description>
			<content:encoded><![CDATA[<p>Take advantage of the free innovation for your Blackberry. There are hundreds of applications to help your manage your time more effectively. I can&#8217;t pass up the fun ones either. Here is a list of my favorites.</p>
<h3>Vlingo</h3>
<p>Intelligent voice recognition app includes SafeReader. Your incoming text and email messages are read to you while you are on the go.Search the web using Google or Yahoo, call a friend, update your Facebook or Twitter status, and send a text message to other Vlingo BlackBerry users in the free version.</p>
<p><small><em>Download at Blackberry App World</em></small></p>
<h3>Weather Channel</h3>
<p>Detailed conditions and forecasts, radar maps, local and national severe weather alerts, airport delays and more. You can even access the weather from your calendar or address book, and forward alerts to friends and family.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3624?lang=en" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>WordPress</h3>
<p>Write posts, upload photos and videos, edit pages, and manage comments. Both WordPress.com and self-hosted WordPress (2.9.2 or higher) sites are supported. Start blogging on the go in no time.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/5802?lang=en" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>Google Mobile</h3>
<p>Stay connected on the go with BlackBerry apps by Google. Read and send emails on the go from GMail. Search for any email saved in your account. Search Google using your voice and your location. Search for local businesses, and get driving, transit, or walking directions on Google Maps. Automatically synchronize your Google Calendar and Contacts to your BlackBerry with Google Sync.</p>
<p><small><em>Download at Google Mobile</em></small></p>
<h3>Google Voice</h3>
<p>Make calls from your Google Voice number, read voicemail like email, and more. Google Voice integrates with your phone&#8217;s native address book or Google Contacts. Voicemails are automatically transcribed to text so you can read them like email. Send and receive text messages through the Google Voice app for free.</p>
<p><small><em>Download at Google Voice</em></small></p>
<h3>Paypal</h3>
<p>Monitor your account on the go. Log in, enter the amount and the recipient&#8217;s phone number or email address, and the rest is a snap. You can even send money in 23 different currencies. You can choose to send money with PayPal directly from your contact list.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/5215" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>UberTwitter</h3>
<p>UberTwitter is a geo-location Twitter client with photo integration, embed videos in tweets, tweet shrinking, URL shortening, twitter lists, changing your twitter avatar,  saved searches, conversation threads, twitter profile editing, view who is retweeting you, and a plethora of other features.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3436" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>I.C.E.</h3>
<p>When you can’t give rescue personnel your vital, medical information, I.C.E. provides EMTs with critical personal and medical data: your name, emergency contacts, blood type, allergies, physician’s name and number, your medications and medical conditions.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/2281" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>Starbucks</h3>
<p>Enter your Starbucks Card number and your BlackBerry becomes your Starbucks Card. Register your card, check your balance and track your earnings toward free beverages through your <a href="https://www.starbucks.com/card/rewards">My Starbucks Rewards</a> account.</p>
<p><small><em>Text GO to 70845</em></small></p>
<h3>ScanLife Barcode Reader</h3>
<p>ScanLife turns your camera phone into an all-in-one bar code reader so now it s easier than ever to quickly access websites, product pricing &amp; more. Scan Datamatrix, EZcode, QR and UPC!</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/1102" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>BlueState Converter</h3>
<p>Features include setting a default unit, and a Save Calculation feature. The number of decimal places display is configurable, and converting the sign of input amounts is easy. The free version includes the following categories: Area, Length, Time, Volume, Mass/Weight, Temperature &#8211; and includes Imperial and metric units. Each category contains many unit types.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3596" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>Vlingo</h3>
<p>Intelligent voice recogntion app includes SafeReader. Your incoming text and email messages are read to you while you are on the go.Search the web using Google or Yahoo, call a friend, update your Facebook or Twitter status, and send a text message to other Vlingo BlackBerry users in the free version.</p>
<p><small><em>Download at Blackberry App World</em></small></p>
<h3>Weather Channel</h3>
<p>Detailed conditions and forecasts, radar maps, local and national severe weather alerts, airport delays and more. You can even access the weather from your calendar or address book, and forward alerts to friends and family.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3624?lang=en" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>WordPress</h3>
<p>Write posts, upload photos and videos, edit pages, and manage comments. Both WordPress.com and self-hosted WordPress (2.9.2 or higher) sites are supported. Start blogging on the go in no time.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/5802?lang=en" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>Google Mobile</h3>
<p>Stay connected on the go with BlackBerry apps by Google. Read and send emails on the go from GMail. Search for any email saved in your account. Search Google using your voice and your location. Search for local businesses, and get driving, transit, or walking directions on Google Maps. Automatically synchronize your Google Calendar and Contacts to your BlackBerry with Google Sync.</p>
<p><small><em>Download at Google Mobile</em></small></p>
<h3>Google Voice</h3>
<p>Make calls from your Google Voice number, read voicemail like email, and more. Google Voice integrates with your phone&#8217;s native address book or Google Contacts. Voicemails are automatically transcribed to text so you can read them like email. Send and receive text messages through the Google Voice app for free.</p>
<p><small><em>Download at Google Voice</em></small></p>
<h3>Paypal</h3>
<p>Monitor your account on the go. Log in, enter the amount and the recipient&#8217;s phone number or email address, and the rest is a snap. You can even send money in 23 different currencies. You can choose to send money with PayPal directly from your contact list.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/5215" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>UberTwitter</h3>
<p>UberTwitter is a geo-location Twitter client with photo integration, embeded videos in tweets, tweet shrinking, URL shortening, twitter lists, changing your twitter avatar,  saved searches, conversation threads, twitter profile editing, view who is retweeeting you, and a plethora of other features.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3436" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>I.C.E.</h3>
<p>When you can’t give rescue personnel your vital, medical information, I.C.E. provides EMTs with critical personal and medical data: your name, emergency contacst, blood type, allergies, physician’s name and number, your medications and medical conditions.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/2281" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>Starbucks</h3>
<p>Enter your Starbucks Card number and your BlackBerry becomes your Starbucks Card. Register your card, check your balance and track your earnings toward free beverages through your <a href="https://www.starbucks.com/card/rewards">My Starbucks Rewards</a> account.</p>
<p><small><em>Text GO to 70845</em></small></p>
<h3>ScanLife Barcode Reader</h3>
<p>ScanLife turns your camera phone into an all-in-one bar code reader so now it s easier than ever to quickly access websites, product pricing &amp; more. Scan Datamatrix, EZcode, QR and UPC!</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/1102" target="_blank">Download at Blackberry App World</a></em></small></p>
<h3>BlueState Converter</h3>
<p>Features include setting a default unit, and a Save Calculation feature. The number of decimal places display is configurable, and converting the sign of input amounts is easy. The free version includes the following categories: Area, Length, Time, Volume, Mass/Weight, Temperature &#8211; and includes Imperial and metric units. Each category contains many unit types.</p>
<p><small><em><a href="http://appworld.blackberry.com/webstore/content/3596" target="_blank">Download at Blackberry App World</a></em></small></p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/best-free-blackberry-apps/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Postdate in WordPress</title>
		<link>http://expandsm.com/postdate-in-wordpress</link>
		<comments>http://expandsm.com/postdate-in-wordpress#comments</comments>
		<pubDate>Mon, 22 Nov 2010 15:00:17 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[change date wordpress posts]]></category>
		<category><![CDATA[how to postdate wordpress post]]></category>
		<category><![CDATA[write posts ahead wordpress]]></category>

		<guid isPermaLink="false">http://www.expandsocialmedia.com/SEO/?p=278</guid>
		<description><![CDATA[Having new content on your nlog everyday is an ideal many bloggers aspire to and for good reasons. New posts keep subscribers interested and give google more to index. All of this is good for PageRank. Then, there is reality. Most of us do not have time to site down and write a new post [...]]]></description>
			<content:encoded><![CDATA[<p>Having new content on your nlog everyday is an ideal many bloggers aspire to and for good reasons. New posts keep subscribers interested and give google more to index. All of this is good for PageRank.</p>
<p>Then, there is reality. Most of us do not have time to site down and write a new post everyday. It isn&#8217;t necessary with the publish dating feature in WordPress. That box on the right-hand side is your time saving ticket to daily content.</p>
<ol>
<li>Edit the date<br />
<img class="aligncenter" title="postdate in wordpress" src="http://expandsm.com/wp-content/uploads/2010/11/publish-wordpress-closed.jpg" alt="wordpress publishing options" /></li>
<li>Remember to use 24 hour time &#8211; add the P.M. time to 12 to get the right number.<br />
<img class="aligncenter" title="postdate in wordpress" src="http://expandsm.com/wp-content/uploads/2010/11/publish-box-wordpress.jpg" alt="wordpress publishing options" /></li>
<li>Save the date! Note the <em>Publish </em>button changes to <em>Schedule</em>
</li>
</ol>
<p>Voila! If you are industrious, you can post a week&#8217;s worth of posts in a weekend.</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/postdate-in-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick tips to increase PageRank</title>
		<link>http://expandsm.com/pagerank-bloggers</link>
		<comments>http://expandsm.com/pagerank-bloggers#comments</comments>
		<pubDate>Mon, 15 Nov 2010 21:31:38 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[improve pagerank]]></category>
		<category><![CDATA[improve site authority]]></category>
		<category><![CDATA[pagerank increase]]></category>

		<guid isPermaLink="false">http://www.expandsocialmedia.com/?p=262</guid>
		<description><![CDATA[PageRank is an algorithm created by Larry Page of Google. It is a trademarked, highly guarded system that Page named after himself. PageRank reflects our view of the importance of web pages by considering more than 500 million variables and 2 billion terms. Pages that we believe are important pages receive a higher PageRank and [...]]]></description>
			<content:encoded><![CDATA[<p>PageRank is an algorithm created by Larry Page of Google. It is a trademarked, highly guarded system that Page named after himself. </p>
<blockquote><p>PageRank reflects our view of the importance of web pages by considering   more than 500 million variables and 2 billion terms. Pages that we   believe are important pages receive a higher PageRank and are more   likely to appear at the top of the search results.</p>
<p>PageRank also considers the importance of each page that casts a   vote, as votes from some pages are considered to have greater value,   thus giving the linked page greater value. We have always taken a   pragmatic approach to help improve search quality and create useful   products, and our technology uses the collective intelligence of the web   to determine a page&#8217;s importance. <a href="http://www.google.com/about/corporate/company/tech.html">Source</a></p></blockquote>
<p>Google and other search engines use &#8220;crawlers&#8221; to travel through the internet. Crawlers are a software agent that systematically copies (index) all the content in every page of every website. They also have an operation called spidering that follows the outbound hyperlinks of each page, evaluates it and adds them to the destination&#8217;s PageRank. The entire process is complicated. Google updates it regularly to keep it relevant to the changing internet landscape. If you have</p>
<p>Now let&#8217;s apply this to your website. PageRank applies to blogs in several ways. Having a search engine optimized (SEO) site give your site a higher chance to be shown on the first page of a potential readers keyword search. For instance, do a search on Google for &#8220;the percentage of politicians that i think are honest is:&#8221; and a post I wrote in November 2007 is the third on the list. I&#8217;m first for &#8220;swing shift sucks&#8221; most days. Rankings like this keep my little blog with only a few dozen subscribers at PageRank 4.</p>
<p>This PageRank brings more unique visitors to my site. This benefits my site in two ways:</p>
<ol>
<li>It makes my Google AdSense clicks pay higher.  Ads clicked from visitors who come from direct links pay a small fraction of the fee paid when you have new visits from search engines.</li>
<li>It makes PR reps take notice of my site. PageRacnk and traffic stats are the two most commonly requested metrics from companies looking for blogs to advertise on.</li>
</ol>
<p>While no method is foolproof, I have found several things to be much more important than others pertaining to blogs and PageRank. Blogs are a different animal than a business website.This list will help you cover all your bases. I refer mainly to self-hosted WordPress blogs for tools and plugins as it is the most common platform.</p>
<ol>
<li><strong>Own your domain. </strong>The plain truth is that search crawlers don&#8217;t pay close attention to blogs in that end in blogspot.com or wordpress.com. If owning a self-hosted site is not in your budget right now, at least buy a domain through your current platform.</li>
<li><strong>Sitemap:</strong> Giving the search engine bot a schematic of your site so it can index all of your posts.
<ol>
<li>If you are in WordPress, use the <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps Plugin</a>.</li>
<li>Link to sitemap.xml in the footer of your site.</li>
</ol>
</li>
<li><strong>Register your site</strong> on Google Webmaster Tools and Quancast.
<ol>
<li><a href="https://www.google.com/webmasters/tools" target="_blank">Google Webmaster Tools</a> puts your site on the crawler&#8217;s automatic queue. It will scan for new posts, comments and links to index without the need for pings.</li>
<li><a href="http://www.quantcast.com/" target="_blank">Quantcast</a> is a public analytics site. Whenever you have a PR inquiry, they can look there for real time stats. You can also embed the charts into your media kit.</li>
</ol>
</li>
<li><strong>Use &#8220;pretty permalinks&#8221; </strong>for your posts. For WordPress, select Custom and input
<ol>
<li> %postname%/ this turns your title &#8220;Oh Happy Day&#8221; into /oh-happy-day</li>
<li> %post_id%/%postname%/  this adds the post&#8217;s numerical identifier before, making it /9435/oh-happy-day/. I suggest this for people who are prone to using the same titles unwittingly or have more than 3 years of posts to rename.</li>
<li>While you&#8217;re at it, name your photos with keywords. girl-with-a-daisy.jpg is going to get more attention than IMG_9094.jpg</li>
</ol>
</li>
</ol>
<p>Google updates PageRank scores  every quarter. You can monitor your score at <a href="http://www.prchecker.info/check_page_rank.php" target="_blank">Google PageRank Checker</a>. Don&#8217;t despair at a low score. PageRank is difficult. Most Website Administrators consider a 4 as great, 5 is outstanding. Only about a dozen sites <a href="http://www.searchenginegenie.com/pagerank-10-sites.htm" target="_blank">achieve a 10</a>. I recommend using <a href="http://websitegrader.com/" target="_blank">Website Grader</a> by Hubspot. It will give you an in-depth analysis of your site. Don&#8217;t sweat the score. Look at the suggestions. We all have room for improvement. This is the internet, we&#8217;re all learning as we go.</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/pagerank-bloggers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3 easy search engine optimization modifications for your WordPress blog</title>
		<link>http://expandsm.com/3-easy-search-engine-optimization-modifications-wordpress-blog</link>
		<comments>http://expandsm.com/3-easy-search-engine-optimization-modifications-wordpress-blog#comments</comments>
		<pubDate>Sun, 14 Nov 2010 11:11:51 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[easy SEO]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[wordpress blog]]></category>

		<guid isPermaLink="false">http://www.hyperopiamedia.com/?p=83</guid>
		<description><![CDATA[If you are in the blogging majority, you want to include your page rank. There are a few things you can do from your dashboard with few technical skills. This is search engine optimization that only needs to modified once. Get rid of your Uncategorized category Naming all your categories gives search engine crawlers one [...]]]></description>
			<content:encoded><![CDATA[<p>If you are in the blogging majority, you want to include your page rank. There are a few things you can do from your dashboard with few technical skills. This is search engine optimization that only needs to modified once. </p>
<ol>
<li>
<h3>Get rid of your Uncategorized category</h3>
<p>Naming all  your categories gives search engine crawlers one more scent to sniff you out better.<br />
Go to <em>Settings &gt; Writing &gt; Default Post Category </em>and choose a new default category.<br />
Then go to <em>Posts &gt; Categories &gt;</em> delete &#8220;Uncategorized&#8221; from the list.</li>
<li>
<h3>Add metadata to your site</h3>
<p>I&#8217;ve explained this in detail on another post.<br />
Basically, go to <em>Appearance &gt; Editor &gt; header.php </em>and replace the existing metadata:</p>
<pre class="brush: plain; title: ; notranslate">
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;description&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;one sentence summary of your content&amp;amp;amp;quot;&amp;amp;amp;gt;
&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;keywords&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;five keywords. TIP: choose 2 that appear in you analytics traffic keywords&amp;amp;amp;quot;&amp;amp;amp;gt;
&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;author&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;your name or username or twitter handle&amp;amp;amp;quot;&amp;amp;amp;gt;</pre>
</li>
<li>
<h3>Dump your admin username</h3>
<p>Admin usernames are both <a href="http://www.wpbeginner.com/wp-tutorials/11-vital-tips-and-hacks-to-protect-your-wordpress-admin-area/">security risks</a> and anonymous. Give search users a chance to find you by your handle.<br />
If you want to use the email listed in your admin file for your new username, go into <em>Users &gt; Authors &amp; Users &gt;</em> and change the admin email to another. Then, create a new user profile in <em>Users &gt; Add New</em>. Be sure to make this one Administrator.<br />
Then you must logout, login with the new username and go back to <em>Users &gt; Authors &amp; Users &gt;</em> and delete the admin.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/3-easy-search-engine-optimization-modifications-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>put permanent metadata in your site</title>
		<link>http://expandsm.com/put-permanent-metadata-site</link>
		<comments>http://expandsm.com/put-permanent-metadata-site#comments</comments>
		<pubDate>Sat, 13 Nov 2010 11:27:01 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[blogspot]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Meta element]]></category>

		<guid isPermaLink="false">http://www.hyperopiamedia.com/?p=92</guid>
		<description><![CDATA[I am sure you have heard all about the importance of include keyword tags in your blog posts. It&#8217;s a great way to get those search engines to bring more readers to your site. When you create your blog in WordPress or Blogger, it creates metadata with your title and tag line. This is good, [...]]]></description>
			<content:encoded><![CDATA[<p>I am sure you have heard all about the importance of include keyword tags in your blog posts. It&#8217;s a great way to get those search engines to bring more readers to your site.</p>
<p>When you create your blog in WordPress or Blogger, it creates metadata with your title and tag line. This is good, but put a lot of importance on that tagline. It throws out all those witty quips you wanted to use.</p>
<p>Now you can do both with a simple code embedded in your template. A little copy and paste will help you add common keywords that relate to you. Change what is in the CONTENT quotes and keep everything else.</p>
<pre class="brush: plain; title: ; notranslate">
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;description&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;one sentence summary of your content&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;keywords&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;five keywords. TIP: choose 2 that appear in you analytics traffic keywords&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;author&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;your name or username or twitter handle&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;creation_date&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;date of your first post&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META NAME=&amp;amp;amp;quot;robots&amp;amp;amp;quot; CONTENT=&amp;amp;amp;quot;all, index, follow&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;
&amp;amp;amp;lt;META name=&amp;amp;amp;quot;copyright&amp;amp;amp;quot; content=&amp;amp;amp;quot;&amp;amp;amp;amp;copy; year of first post to current year the you name&amp;amp;amp;quot;&amp;amp;amp;gt;&amp;amp;amp;lt;/meta&amp;amp;amp;gt;</pre>
<h3>WordPress (self-hosted)</h3>
<p>Go to Appearance &gt; Editor &gt; header.php &gt; Insert the code before the  tag</p>
<h3>Blogger:</h3>
<p>Go to Layout &gt; edit html &gt; insert the code before the tag</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/put-permanent-metadata-site/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Does your blog ping?</title>
		<link>http://expandsm.com/does-your-blog-ping</link>
		<comments>http://expandsm.com/does-your-blog-ping#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:21:10 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Ping]]></category>

		<guid isPermaLink="false">http://www.hyperopiamedia.com/?p=89</guid>
		<description><![CDATA[Pings are a quick way to spread your blogs posts around the internet. A ping is a notification that is sent to a website. You have probably gotten them before when someone links your blog. There is a long list of Ping services that aggregate lists of new blog posts or website content. There are [...]]]></description>
			<content:encoded><![CDATA[<p>Pings are a quick way to spread your blogs posts around the internet. A ping is a notification that is sent to a website. You have probably gotten them before when someone links your blog. There is a long list of <em>Ping services</em> that aggregate lists of new blog posts or website content.</p>
<p>There are several ways to get you URL on these lists. Spending an hour to sign your blog on to some update services will give you an edge on search engine page rank.</p>
<p>In your WordPress blog :  to Settings &gt; Writing &gt;; and scroll down to <em>Update Services.</em> You will see &#8220;http://rpc.pingomatic.com/&#8221; in the box. Take a minute and add the below list into the box to bulk up your update notifications.</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://rpc.weblogs.com/RPC2</p>
<p>http://ping.feedburner.com/</p>
<p>http://api.moreover.com/RPC2</p>
<p>http://rpc.blogrolling.com/pinger/</p>
<p>http://bulkfeeds.net/rpc</p>
<p>http://pinger.blogflux.com/rpc/</p>
<p>http://services.newsgator.com/ngws/xmlrpcping.aspx&#8217;</p>
<p>http://www.blogpeople.net/servlet/weblogUpdates</p>
<p>http://blogupdate.org/ping/</p>
<p>http://www.feedsky.com/api/RPC2</p>
<p>For Blogger users, you&#8217;re SOL for the automatic notifications. It all has to be done manually or through an external service. I hear there is a script in the works to add in.</p>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/does-your-blog-ping/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use your photos to bring in traffic</title>
		<link>http://expandsm.com/use-your-photos-to-bring-in-traffic</link>
		<comments>http://expandsm.com/use-your-photos-to-bring-in-traffic#comments</comments>
		<pubDate>Sat, 02 Jan 2010 19:12:50 +0000</pubDate>
		<dc:creator>Astacia</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[alt tags]]></category>
		<category><![CDATA[photo SEO]]></category>
		<category><![CDATA[title tags]]></category>

		<guid isPermaLink="false">http://www.hyperopiamedia.com/?p=84</guid>
		<description><![CDATA[When used correctly, the images on your site increase both its aesthetic value and PageRank. There are 3 components will increase your site&#8217;s SEO with every photo or logo. Naming: Use your keywords in your image title. Use hyphens between words. This image is &#8220;baby-rabbit-in-grass.jpg&#8221;, get it? Title: This is for visually impaired viewers using [...]]]></description>
			<content:encoded><![CDATA[<p>When used correctly, the images on your site increase both its aesthetic value and PageRank. There are 3 components will increase your site&#8217;s SEO with every photo or logo.</p>
<ol>
<li>Naming: Use your keywords in your image title. Use hyphens between words. This image is &#8220;baby-rabbit-in-grass.jpg&#8221;, get it?</li>
<li>Title: This is for visually impaired viewers using screen readers and those who have dial up. It&#8217;s the placeholder text for your image. This one is title=&#8221;baby rabbit in grass&#8221;, spaces are allowed. Keep it to less than 5 words.</li>
<li>Alt: Keywords! Use words that relate to the image and your post.  I added alt=&#8221;using images for SEO&#8221; and we&#8217;re done!</li>
</ol>
<p>The instructions are for WordPress  users, but it&#8217;s pretty much the same in all blogging platforms.</p>
<ol>
<li>Upload your image into WordPress, insert it into your post and click the Edit Image button.<br />
<a href="http://mamikaze.com/images/wordpress/img-upload.png"><img src="http://mamikaze.com/images/wordpress/img-button.png" alt="wordpress images search engine optimization" width="300" /></a></li>
<li>Go to the Advanced Settings tab<br />
<a href="http://mamikaze.com/images/wordpress/img-manager-1.png"><img src="http://mamikaze.com/images/wordpress/img-manager-1.png" alt="wordpress images search engine optimization" width="300" /></a></li>
<li>Add your text to &#8220;Edit Alternate Text&#8221; and &#8220;Title&#8221;<br />
<a href="http://mamikaze.com/images/wordpress/img-manager-2.png"><img src="http://mamikaze.com/images/wordpress/img-manager-2.png" alt="wordpress images search engine optimization" width="300" /></a></li>
<li>Or just code it in from the HTML tab
<pre class="brush: plain; title: ; notranslate">&lt;img title=&quot;images html code&quot; src=&quot;http://site.com/images/wordpress/code-for-image.png&quot; alt=&quot;images search engine optimization&quot; /&gt;</pre>
<p><a href="http://mamikaze.com/images/wordpress/img-code.png"><img src="http://mamikaze.com/images/wordpress/img-code.png" alt="wordpress images search engine optimization" width="400" /></a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://expandsm.com/use-your-photos-to-bring-in-traffic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

