<?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>Simple Inbound Marketing &#124; SEO</title>
	<atom:link href="http://www.simpleinbound.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simpleinbound.com</link>
	<description>Inbound Marketing Techniques &#124; Tutorials on SEO, Social Media, Wordpress &#38; Online Marketing</description>
	<lastBuildDate>Thu, 21 Mar 2013 16:44:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>WordPress: Adding Code to Front Page-Only Between Posts</title>
		<link>http://www.simpleinbound.com/wordpress-adding-code-to-front-page-only-between-posts/</link>
		<comments>http://www.simpleinbound.com/wordpress-adding-code-to-front-page-only-between-posts/#comments</comments>
		<pubDate>Sun, 17 Mar 2013 18:07:17 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Adding HTML on Front Page]]></category>
		<category><![CDATA[front page]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=276</guid>
		<description><![CDATA[How to Add Code below your Home Page Blog posts? How to ad Adsense code below Front Page Blog Postings How do I add HTML to My Twenty Ten Theme Front Page (below posts)? How to Add code to Front &#8230; <a href="http://www.simpleinbound.com/wordpress-adding-code-to-front-page-only-between-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Adding Code to Front Page Only Between Posts" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a>How to Add Code below your Home Page Blog posts?<br />
How to ad Adsense code below Front Page Blog Postings<br />
How do I add HTML to My Twenty Ten Theme Front Page (below posts)?<br />
How to Add code to Front page and not the rest of my blog?</p>
<p>This code is used to place and code (or ad code&#8230;whatever you&#8217;d like) on your WordPress blogs <em>front page only</em></p>
<p>(<em>You can also have it appear sitewide, if you follow additional notes below</em>)</p>
<p>(This code is used only for <strong>one placement</strong> on your front page<em> ) (more than 1</em> placement lessons to come soon!)<span id="more-276"></span></p>
<p>SEE EXAMPLE:</p>
<p><a href="http://www.simpleinbound.com/wordpress-adding-code-to-front-page-only-between-posts/code-below-posts/" rel="attachment wp-att-277"><img class="aligncenter size-full wp-image-277" alt="code below posts Wordpress: Adding Code to Front Page Only Between Posts" src="http://www.simpleinbound.com/wp-content/uploads/2013/03/code-below-posts.jpg" width="485" height="734" title="Wordpress: Adding Code to Front Page Only Between Posts" /></a></p>
<p><strong>1-</strong> Open up <strong>LOOP.PHP</strong></p>
<p><strong>2-</strong> Find this piece of code in <strong>LOOP.PHP</strong></p>
<p><em>&lt;?php while ( have_posts() ) : the_post(); ?&gt;<strong><br />
</strong></em></p>
<p><strong>3-</strong> Place the following code segment right ABOVE it</p>
<p><em>&lt;!&#8211; CODE added to place in CODE addin onto front page only &#8211;&gt;</em><br />
<em>&lt;?php $postnum = 1; $showads = 3; ?&gt;</em><br />
<em>&lt;!&#8211; end CODE added to place in CODE addin onto front page only &#8211;&gt;</em></p>
<p><strong>4-</strong> Note:<br />
This is set up to place the code after  your third blog post 3, if you want to change that, then change 3 to another number  (Example: =5)</p>
<p><strong>5-</strong> Great! Now onto the 2nd part</p>
<p>_________________________</p>
<p>6- Find this code in <strong>LOOP.PHP</strong> (<em>closer to the bottom</em>)</p>
<p><em>&lt;?php endif;</em></p>
<p><strong>7-</strong> Place the code <strong>listed below</strong> right <strong>ABOVE it</strong><br />
(though erase the part that says &#8220;<em><strong>ERASE THIS LINE AND PLACE YOUR CODE HERE</strong></em>&#8221; and place in <strong>your</strong> desired code</p>
<p>&nbsp;</p>
<p><em>&lt;!&#8211; CODE part 2 added to place CODE addin &#8211;&gt;</em><br />
<em>&lt;?php if (is_front_page()) { ?&gt;</em><br />
<em>&lt;?php if ($postnum == $showads) { ?&gt; </em></p>
<p><span style="color: #ff0000;"><em><strong>ERASE THIS LINE AND PLACE YOUR CODE HERE</strong></em></span></p>
<p><em>&lt;?php } $postnum++; ?&gt;</em><br />
<em>&lt;?php } ?&gt;</em><br />
<em>&lt;!&#8211; END &#8211; CODE part 2 added to place CODE addin&#8211;&gt;</em></p>
<p><strong>8-</strong> That&#8217;s it!<br />
______________________________________________________</p>
<p><strong>What if I want this on every POST, ARCHIVE and HOME PAGE?<br />
</strong>A:  Use the following code instead (as noted in step #7)<strong><br />
</strong><br />
<em>&lt;!&#8211; CODE part 2 added to place CODE addin &#8211;&gt;</em><br />
<em>&lt;?php if ($postnum == $showads) { ?&gt; </em></p>
<p><span style="color: #ff0000;"><em><strong>ERASE THIS LINE AND PLACE YOUR CODE HERE</strong></em></span></p>
<p><em>&lt;?php } $postnum++; ?&gt;</em><br />
<em>&lt;!&#8211; END &#8211; CODE part 2 added to place CODE addin&#8211;&gt;</em></p>
<p>______________________________________________________</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-adding-code-to-front-page-only-between-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Category Thumbnails Image Widget Plugin for Sidebar</title>
		<link>http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/</link>
		<comments>http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 01:03:59 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Category Thumbnails]]></category>
		<category><![CDATA[Image Widget]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=272</guid>
		<description><![CDATA[I thought this post would be a great help to those looking for this &#8220;look and feel&#8221; option for your theme. In fact I&#8217;ve seen this kind of widget in several themes (built in), but nothing that really does this &#8230; <a href="http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Category Thumbnails Image Widget Plugin for Sidebar" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a></p>
<p>I thought this post would be a great help to those looking for this &#8220;<em>look and fee</em>l&#8221; option for your theme. In fact I&#8217;ve seen this kind of widget in several themes (built in), but nothing that really does this simple need function (in the way of plugins).</p>
<p>For clarification, it&#8217;s a sidebar widget that only shows the thumbnails (or with titles..etc) on &#8220;recent posts&#8221; organized (or with the ability to organize) into columns (2-up, 4-up, 6-up)..etc. I&#8217;ve included a snapshot example to illustrate the need:<span id="more-272"></span></p>
<p><a href="http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/sidebar-widget/" rel="attachment wp-att-273"><img class="aligncenter size-full wp-image-273" alt="sidebar widget Wordpress: Category Thumbnails Image Widget Plugin for Sidebar" src="http://www.simpleinbound.com/wp-content/uploads/2013/03/sidebar-widget.jpg" width="261" height="412" title="Wordpress: Category Thumbnails Image Widget Plugin for Sidebar" /></a></p>
<p>Now I will say that you can do ALOT with this plugin, so this is only 1 example. The other cool thing is that it generates PHP that you can add to your INDEX.PHP or PAGE, POSTS..what ever!</p>
<p><strong>This means your not limited to the side bar</strong> (see an example of it added to a WordPress front page)</p>
<p><a href="http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/front-page-example/" rel="attachment wp-att-274"><img class="aligncenter size-full wp-image-274" alt="front page example Wordpress: Category Thumbnails Image Widget Plugin for Sidebar" src="http://www.simpleinbound.com/wp-content/uploads/2013/03/front-page-example.jpg" width="504" height="170" title="Wordpress: Category Thumbnails Image Widget Plugin for Sidebar" /></a></p>
<p>The plugin also grants tons of options, including CATEGORIES, PAGES, specific PAGES, specific CATEGORIES&#8230;&#8230;&#8230;&#8230;TITLES, hide titles, LINKS, hide links&#8230;..</p>
<p>In any case, The item is called :</p>
<p><strong>Special Recent Posts PRO</strong><br />
<a href="http://codecanyon.net/item/special-recent-posts-pro/552356" target="_blank">http://codecanyon.net/item/special-recent-posts-pro/552356</a></p>
<p>and only costs $6 (well worth the headache of trying to do it yourself)</p>
<p>____________________________</p>
<p>They also have a FREE version:<br />
<strong>Special Recent Posts FREE</strong></p>
<p><a href="http://wordpress.org/extend/plugins/special-recent-posts/" target="_blank">http://wordpress.org/extend/plugins/special-recent-posts/</a></p>
<p>Though the FREE version only allows 1 column, rather than multiples (and more limited options)</p>
<p><em>Lastly, I&#8217;m not a sponsor or being paid to advertise this plugin, I just thought it was a great find (and something I think many might be looking for)</em></p>
<p>Hope that helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-category-thumbnails-image-widget-plugin-for-sidebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Adding a 2nd Menu Navigation (or 3rd) to Your Twenty Ten Theme Easily!</title>
		<link>http://www.simpleinbound.com/wordpress-adding-a-2nd-menu-navigation-or-3rd-to-your-twenty-ten-theme-easily/</link>
		<comments>http://www.simpleinbound.com/wordpress-adding-a-2nd-menu-navigation-or-3rd-to-your-twenty-ten-theme-easily/#comments</comments>
		<pubDate>Thu, 07 Mar 2013 00:00:45 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Technical Aids]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Adding 2nd menu]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Menu Navigation]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Twenty Ten]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=269</guid>
		<description><![CDATA[Please note: This technique should also work across any theme (not tested on other themes, but the logic is pretty straight forward) It was the other day that I was searching for &#8220;this&#8221; particular need on the Internet and came &#8230; <a href="http://www.simpleinbound.com/wordpress-adding-a-2nd-menu-navigation-or-3rd-to-your-twenty-ten-theme-easily/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Adding a 2nd Menu Navigation (or 3rd) to Your Twenty Ten Theme Easily!" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a><em>Please note: This technique should also work across any theme (not tested on other themes, but the logic is pretty straight forward)</em></p>
<p>It was the other day that I was searching for &#8220;this&#8221; particular need on the Internet and came across several articles. While the articles were informative, each of them seemed to be missing basic steps and/or were listing code that produced errors on my site. So for the sake of simplicity and straight forward information, I am listing the procedure in very basic steps so that anyone can add a 2nd, 3rd, 4th&#8230;&#8230;menu to your theme. This lesson does not take into account child themes, it is simply the way to modify your theme as is, right out of the box</p>
<p><em>(This tutorial assumes you have a basic understanding on how to edit and save your theme files) </em>Really there is only 3 steps, though I&#8217;ve taken the time to explain everything to walk you thru it.<span id="more-269"></span><em><br />
</em></p>
<p>+++++++++++++++++++++++++</p>
<p><strong>STEPS:</strong></p>
<p><strong>1)</strong> Go into <strong>APPEARANCE &#8211;&gt;MENUS</strong><br />
Create a new menu by clicking the <strong>(+)</strong> sign (tab on top), and then dragging <strong>PAGES</strong> or<strong> CATEGORIES</strong> from the left menus to the right. Save this with a name that makes sense&#8230;such as &#8220;<em>New top menu</em>&#8221; or &#8220;<em>Footer Menu</em>&#8221;</p>
<p><strong>2)</strong> Ok now you&#8217;ll want to add a piece of code to your<strong> FUNCTIONS.PHP</strong> file (in your theme folder)</p>
<p>Copy the code &#8220;exactly&#8221; as you see it (the code contains your &#8220;primary&#8221; (main) navigation, and now your &#8220;secondary&#8221; (new) navigation.</p>
<p>Do a search for &#8220;<strong>wp_nav_menu</strong>&#8221;<br />
If you are using the Twenty Ten theme then it will look like this:</p>
<p>&nbsp;</p>
<p><em>// This theme uses wp_nav_menu() in one location.</em><br />
<em> register_nav_menus( array(</em><br />
<em> &#8216;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em> ) );</em></p>
<p>&nbsp;</p>
<p><strong>Now delete that code and use this one instead:</strong></p>
<p>&nbsp;</p>
<p><span style="color: #ff0000;"><em>// This theme uses wp_nav_menu() in 2 locations.</em></span><br />
<span style="color: #ff0000;"> <em> register_nav_menus( array(</em></span><br />
<span style="color: #ff0000;"> <em> &#8216;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),</em></span><br />
<span style="color: #ff0000;"> <em> &#8216;secondary&#8217; =&gt; __( &#8216;Secondary Navigation&#8217;, &#8216;twentyten&#8217; ),</em></span><br />
<span style="color: #ff0000;"> <em> ) );</em></span></p>
<p>=======================<br />
<strong>What does that do?</strong><br />
It adds a function to your theme, so if you go back into:<br />
<strong>APPEARANCE &#8211;&gt;MENUS</strong><br />
Under &#8220;<strong>THEME LOCATIONS</strong>&#8221; on the left, you should now see a &#8220;<strong>Secondary Navigation</strong>&#8221; under the &#8221; <strong>Primary Navigation</strong>&#8221;<br />
=======================</p>
<p><strong>3)</strong>- Now go ahead and choose the NEW menu you created <em>in step #1</em> from the drop down list under &#8221; <strong>Secondary Navigation</strong>&#8221;<br />
<em>(see my graphic example</em>)</p>
<p><a href="http://www.simpleinbound.com/wordpress-adding-a-2nd-menu-navigation-or-3rd-to-your-twenty-ten-theme-easily/menu/" rel="attachment wp-att-270"><img class="aligncenter size-full wp-image-270" alt="menu Wordpress: Adding a 2nd Menu Navigation (or 3rd) to Your Twenty Ten Theme Easily!" src="http://www.simpleinbound.com/wp-content/uploads/2013/03/menu.jpg" width="531" height="140" title="Wordpress: Adding a 2nd Menu Navigation (or 3rd) to Your Twenty Ten Theme Easily!" /></a><br />
<strong>4)</strong> OK halfway there! The Theme now recognizes the new navigation AND you have a &#8220;menu&#8221; to go INTO that navigation</p>
<p><strong>Don&#8217;t see it yet on your site?</strong><br />
Thats right, 1 more step to go, before its live! You&#8217;ve only added code to the back end at this point.</p>
<p>Now this part is simply a matter of where you WANT to place the code that shows up on your HOME (front page). For this tutorial I&#8217;ve placed mine at the top<strong> just above the header</strong>&#8230;&#8230;though, you can really place it where ever you like (for instance just below the main navigation or in the footer) (I&#8217;ll give you tips on those choices later)</p>
<p>So to get started, I am placing mine just above the top banner header.</p>
<p>To do that, locate  the code (inside your <strong>HEADER.PHP</strong> file)</p>
<p><em>&lt;div id=&#8221;masthead&#8221;&gt;</em></p>
<p><strong>and drop this code right below it</strong></p>
<p><span style="color: #ff0000;"><em>&lt;!&#8211; top navigation add to the theme&#8211;&gt;</em></span><br />
<span style="color: #ff0000;"> <em>&lt;div id=&#8221;access&#8221; role=&#8221;navigation&#8221;&gt;</em></span><br />
<span style="color: #ff0000;"> <em>&lt;?php wp_nav_menu( array( &#8216;container_class&#8217; =&gt; &#8216;menu-header&#8217;, &#8216;theme_location&#8217; =&gt; &#8216;secondary&#8217; ) ); ?&gt;</em></span><br />
<span style="color: #ff0000;"> <em>&lt;/div&gt;</em></span><br />
<span style="color: #ff0000;"> <em>&lt;!&#8211; END top navigation add to the theme&#8211;&gt;</em></span></p>
<p><strong>SAVE and check out your blog!</strong></p>
<p><strong>Notes / Tips:</strong><br />
The last bit of code you added can be moved wherever you like within you <strong>HEADER.PHP</strong> file. <em>(well, experiment a bit, that is)</em></p>
<p>So if you wanted it under you existing navigation, then move it down farther in the code</p>
<p>======================<br />
<strong>CSS NOTE: (very important)</strong></p>
<p>You&#8217;ll want to style your menu separately. In the code above it references &#8220;<strong>access</strong>&#8221; within your css &#8220;<strong>STYLE.CSS</strong>&#8221; file. What I recommend is to go in and copy all your files named <strong>#access</strong> and rename them to something else, such as <strong>#access-top</strong>. Then re-paste, back in your &#8220;<strong>STYLE.CSS</strong>&#8221; file, so that you can style that menu separately from your main navigation bar.</p>
<p>This gives you control over the bar separate from the other, and lets you give it a different look and feel</p>
<p><strong>See new code with new css added:</strong></p>
<p><em>&lt;!&#8211; top navigation add to the theme&#8211;&gt;</em><br />
<em>&lt;div id=&#8221;<strong>access-top</strong>&#8221; role=&#8221;navigation&#8221;&gt;</em><br />
<em>&lt;?php wp_nav_menu( array( &#8216;container_class&#8217; =&gt; &#8216;menu-header&#8217;, &#8216;theme_location&#8217; =&gt; &#8216;secondary&#8217; ) ); ?&gt;</em><br />
<em>&lt;/div&gt;</em><br />
<em>&lt;!&#8211; END top navigation add to the theme&#8211;&gt;</em></p>
<p>======================</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>ADDING MORE than 2?</strong></p>
<p>If you follow the steps above you&#8217;ll notice that you can add more navigation bars by doing 2 things:</p>
<p><strong>1</strong>- Add another navigation to this code</p>
<p><em>    // This theme uses wp_nav_menu() in 2 locations.</em><br />
<em>    register_nav_menus( array(</em><br />
<em>        &#8217;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em>        &#8217;secondary&#8217; =&gt; __( &#8216;Secondary Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em>    ) );</em><br />
<em>    </em></p>
<p><strong>So it would now look like this:  (notice the &#8220;Secondary2&#8243; added!)</strong></p>
<p><em>    // This theme uses wp_nav_menu() in 3 locations.</em><br />
<em>    register_nav_menus( array(</em><br />
<em>        &#8217;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em>        &#8217;secondary&#8217; =&gt; __( &#8216;Secondary Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em>        &#8216;secondary2&#8242; =&gt; __( &#8216;Secondary2 Navigation&#8217;, &#8216;twentyten&#8217; ),</em><br />
<em>    ) );</em><br />
<em>    </em></p>
<p><strong>Get it?</strong></p>
<p><strong>2-</strong> You&#8217;ll also need this code again (below) pasted in a different places (though rename &#8220;secondary&#8217; to something else such as &#8220;<em>Secondary2</em>&#8221;</p>
<p><em>&lt;!&#8211; top navigation add to the theme&#8211;&gt;</em><br />
<em>&lt;div id=&#8221;<strong>access-top</strong>&#8221; role=&#8221;navigation&#8221;&gt;</em><br />
<em>&lt;?php wp_nav_menu( array( &#8216;container_class&#8217; =&gt; &#8216;menu-header&#8217;, &#8216;theme_location&#8217; =&gt; &#8216;<strong><em>Secondary2</em></strong>&#8216; ) ); ?&gt;</em><br />
<em>&lt;/div&gt;</em><br />
<em>&lt;!&#8211; END top navigation add to the theme&#8211;&gt;</em></p>
<p>If you want it in your &#8220;footer&#8221;, then use the code in your <strong>FOOTER.PHP</strong> file instead</p>
<p>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p><em>(make sure you save a backup of your <strong>FUNCTIONS.PHP</strong> &amp; <strong>HEADER.PHP</strong> files in case you mis-type your codes)</em></p>
<p><strong>TO REVIEW:</strong></p>
<p><strong>1)</strong> 2 codes added (1 goes into <strong>FUNCTIONS.PHP,</strong> the other goes into <strong>HEADER.PHP</strong><br />
<strong>2)</strong> New menu created in <strong>APPEARANCE&#8211;&gt;MENUS</strong><br />
<strong>3)</strong> CSS code added (using existing) to work for new menu bar</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-adding-a-2nd-menu-navigation-or-3rd-to-your-twenty-ten-theme-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Autoposting from your Blog &#8211; A Quick Solution</title>
		<link>http://www.simpleinbound.com/social-media-autoposting-from-your-blog-a-quick-solution/</link>
		<comments>http://www.simpleinbound.com/social-media-autoposting-from-your-blog-a-quick-solution/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 23:42:32 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google+]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Auto post]]></category>
		<category><![CDATA[Autoposting]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google plus]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=266</guid>
		<description><![CDATA[While, many will argue that social media is (of course) about your level of engagement, interaction, and networking, there is also quite a few of us bloggers who &#8220;prefer&#8221; an auto-posting solution &#8220;backed up&#8221; by engagement (as time permits). For &#8230; <a href="http://www.simpleinbound.com/social-media-autoposting-from-your-blog-a-quick-solution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/marketing/"><img class="size-full wp-image-80 alignright" title="simpleinbound-marketing" alt="simpleinbound marketing Social Media Autoposting from your Blog   A Quick Solution" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-marketing.png" width="108" height="111" /></a>While, many will argue that social media is (of course) about your level of engagement, interaction, and networking, there is also quite a few of us bloggers who &#8220;prefer&#8221; an auto-posting solution &#8220;backed up&#8221; by engagement (as time permits).</p>
<p>For instance, a large organization can afford the luxury of a social-media focused individual who &#8220;can&#8221; take all day (or their 8 hours) and properly engage across media channels for a warm and friendly level of interaction.</p>
<p>The other model is the hard working blogger (usually a 1 person operation) who prefers to spend his or her time on the creation of content and fresh articles.</p>
<p>This article&#8217;s strategy &#8220;can&#8221; be utilized by both but is meant for the single entrepreneur who ALSO needs to alert their followers to fresh posts as they are submitted. This method is also a great way to save massive time (keeping your channels active with content) and driving traffic back from those who are alerted to your activity (your fans, LIKES and followers)</p>
<p>Without further ado, I have devised a simple 3 point plan that each uses a different method for submitting.<span id="more-266"></span></p>
<p>Note: While these solutions can overlap each other (submitting to multiple social channels), I have chosen this method for the &#8220;features&#8221; each offers to its respective social media platform.</p>
<p><strong>Takeaway:</strong><br />
1- You create 1 blog post and hit SUBMIT<br />
2- The post is sent out to the 3 major social channels (<strong>Twitter, Facebook, Google+</strong>) per RSS feed output and INTO the platforms.</p>
<p>My simple illustration demonstrates how this works:</p>
<p><a href="http://www.simpleinbound.com/?attachment_id=267" rel="attachment wp-att-267"><img class="aligncenter size-full wp-image-267" alt="autoposting Social Media Autoposting from your Blog   A Quick Solution" src="http://www.simpleinbound.com/wp-content/uploads/2013/02/autoposting.jpg" width="456" height="261" title="Social Media Autoposting from your Blog   A Quick Solution" /></a></p>
<p><strong>Social platform #1</strong>: Google+ (using <a href="http://http://hootsuite.com" target="_blank"><strong>Hootsuite</strong></a>)<br />
<a title="RSS Feed INTO Google+ Pages Solution!" href="http://www.simpleinbound.com/rss-feed-into-google-pages-solution/" target="_blank">I&#8217;ve created an article on this which you can find here</a></p>
<p><strong>Social platform #2</strong>: Twitter (using &#8220;<a href="http://www.twitterfeed.com/" target="_blank">Twitterfeed</a>&#8220;)<br />
&#8220;<strong>Twitterfeed</strong>&#8221; is free, and is my favorite for Twitter auto posting. Mainly because you can append to the front and back of your posts with Hash tags (if you desire). It also can be limited to &#8220;title only&#8221; which keeps the number of characters down.</p>
<p><strong>Social platform #3</strong>: Facebook (using &#8220;Facebook App &#8211; <a href="http://www.rssgraffiti.com/" target="_blank">RSS Graffiti</a>&#8220;)<br />
MY preferred method for Facebook, as it adds a thumbnail and works within the Facebook platform</p>
<p>This article is meant to give you a FREE solution for the top 3 platforms, the learning curve for each is extremely low, making setup quick, fast AND reliable!</p>
<p>Note: You must have an <strong>RSS feed</strong> for these to work, if you are using a WordPress blog, then your feed address is <strong>wwww.yourwebsite.com/feed/</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/social-media-autoposting-from-your-blog-a-quick-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RSS Feed INTO Google+ Pages Solution!</title>
		<link>http://www.simpleinbound.com/rss-feed-into-google-pages-solution/</link>
		<comments>http://www.simpleinbound.com/rss-feed-into-google-pages-solution/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 23:59:46 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Google+]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google plus]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS Feed]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=265</guid>
		<description><![CDATA[I&#8217;ve seen my share of proposed solutions over the past year, some of which requiring payment to execute. I had to share this FREE recent solution provided by the Hootsuite Application that works perfectly. Now as we all await Google+ &#8230; <a href="http://www.simpleinbound.com/rss-feed-into-google-pages-solution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/tag/google-plus/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" alt="simpleinbound google plus RSS Feed INTO Google+ Pages Solution!" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-google-plus.png" width="108" height="111" /></a>I&#8217;ve seen my share of proposed solutions over the past year, <em>some</em> of which requiring payment to execute. I had to share this <strong>FREE recent solution</strong> provided by the Hootsuite Application that works perfectly. Now as we all await Google+ to formalize this feature for G+ users&#8230;&#8230;&#8230;. have no fear as there is a way!</p>
<p><strong>2 things you need to get started</strong>:</p>
<p>1- Sign up for a <a href="http://hootsuite.com" target="_blank"><strong>FREE Hootsuite account</strong></a> (you can also pay for the PREMIUM version, if needed&#8230;I just went with the FREE one, myself)</p>
<p>2- I&#8217;m going to pass the torch and recommend this article that <a href="http://www.shoutmeloud.com/how-to-auto-publish-blog-post-to-google-plus-page.html" target="_blank">walks you thru the process of RSS feeds into Google + easily</a> and quickly.<span id="more-265"></span></p>
<p>As of this post, I have tested this with working results!</p>
<p><strong>Notes:</strong><br />
- Right now this is limited to Google+ PAGES and NOT your personal profile<br />
- After adding my Feed and activating my Google+ account in Hootsuite, it takes about 1-2 hours before kicking in.</p>
<p><strong>Related Queries:</strong><br />
Adding RSS Feed to a Google Plus Page<br />
Add content of RSS Feed to a Google+ Page<br />
Automatically post RSS Feeds to Google+..<br />
Auto posting to Google+</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/rss-feed-into-google-pages-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics: (2012) Navigation Summary Explained</title>
		<link>http://www.simpleinbound.com/google-analytics-2012-navigation-summary-explained/</link>
		<comments>http://www.simpleinbound.com/google-analytics-2012-navigation-summary-explained/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 00:02:46 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=259</guid>
		<description><![CDATA[Alright, take a deep breath as you are not going crazy. If you&#8217;ve had to deal with the task of reporting your top ALL PAGES (or determining) for your web site in Google Analytics AND the trends of users, you &#8230; <a href="http://www.simpleinbound.com/google-analytics-2012-navigation-summary-explained/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/technical-aids/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" alt="simpleinbound technical Google Analytics: (2012) Navigation Summary Explained" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-technical.png" width="108" height="111" /></a>Alright, take a deep breath as you are not going crazy.<br />
If you&#8217;ve had to deal with the task of reporting your top <strong>ALL PAGES</strong> (or determining) for your web site in Google Analytics AND the trends of users, you may have created a report that looks something like this:</p>
<p><em>(note: modified data for example purposes)<br />
(numbers rounded) (Example created to demonstrate discrepancy)</em></p>
<p><strong>Highest ALL PAGES page: Homepage</strong><br />
<strong> 48% exit after Homepage</strong><br />
<strong> 14% go onto &#8220;website page 1&#8243;</strong><br />
<strong> 13% go onto &#8220;website page 7&#8243;</strong><br />
<strong> 12% go onto &#8220;About Us contact&#8221;</strong><br />
<strong> 9% go onto &#8220;website page 8&#8243;</strong><br />
<strong> remaining = various</strong></p>
<p>To locate this information you&#8217;ll want to take these steps:<span id="more-259"></span></p>
<p><strong>CONTENT&#8211;&gt;SITE CONTENT&#8211;&gt;ALL PAGES</strong><br />
(This lists highest to lowest)<br />
(click on highest page)<br />
(then <strong>NAVIGATION SUMMARY </strong>(tab towards the top<strong>)</strong>)<br />
- look up &#8220;<strong>next page</strong>&#8221; paths<br />
REPEAT for next highest pages</p>
<p>Now if you take a look at this report (image included), you&#8217;ll notice a few things:</p>
<p><a href="http://www.simpleinbound.com/google-analytics-2012-navigation-summary-explained/navigation-pages-calculations/" rel="attachment wp-att-260"><img class="aligncenter size-full wp-image-260" alt="navigation pages calculations Google Analytics: (2012) Navigation Summary Explained" src="http://www.simpleinbound.com/wp-content/uploads/2013/01/navigation-pages-calculations.jpg" width="508" height="359" title="Google Analytics: (2012) Navigation Summary Explained" /></a></p>
<p>1- <strong>EXITS</strong> and <strong>NEXT PAGES</strong> add up to <strong>100%</strong> (47.75% plus 52.25)</p>
<p>2- The #under the column<strong> % PAGEVIEWS</strong>, do not add up to the <strong>NEXT PAGES</strong> % of 52.25%, in fact they add up to more &#8230;.at 80.59% (huh what gives???)</p>
<p>This became an area of frustration for me, as it looks like either the calculation is off, or that you simply can&#8217;t add. So it required breaking down what&#8217;s going on here to a logical conclusion as to how GA is really handling this. I came up with 2 points of interest.</p>
<p><strong>1-</strong> by default <strong>Google Analytics</strong> doesn&#8217;t report all the Previous and Next pages. So you are only seeing the top 10, the rest is hidden (which also means the number is even higher than the 80.59%!!! (huh???)</p>
<p><strong>2-</strong> Google Analytics is treating its <strong>NEXT PAGES</strong> percent (which in this case is 52.25%) and breaking it down from 100% (100% of 52.25%, that is&#8230;.)</p>
<p><strong>Ok, I get it, so how do I get the NEXT PAGES percentage to be correct?</strong></p>
<p>Easily enough, I created a quick <strong>calculator in Excel</strong> that you can use to recalculate.<br />
<a href="http://www.simpleinbound.com/images/Navigation-summary-calculator.zip" target="_blank">Download the file here</a>:</p>
<p><strong>STEPS:</strong><br />
<strong>1-</strong> change the numbers in cells <strong>2A thru 11A</strong> to the numbers from your &#8220;<strong>% Pageviews</strong>&#8221; under NEXT PAGES</p>
<p><strong>2-</strong> In box <strong>21A</strong>, type in your total percentage from <strong>NEXT PAGES</strong> (my example was 52.25%, though I rounded off to .52)</p>
<p>Thats it!, your corrected percentages are under <strong>column B</strong></p>
<p>Which my report now looks like this:</p>
<p><strong>Highest ALL PAGES page: Homepage</strong><br />
<strong>48%  exit after Homepage</strong><br />
<strong>7%  go onto &#8220;website page 1&#8243; </strong><br />
<strong>7%  go onto &#8220;website page 7&#8243;</strong><br />
<strong>6%  go onto &#8220;About Us contact&#8221;</strong><br />
<strong>5%  go onto &#8220;website page 8&#8243;</strong><br />
<strong>remaining = various</strong></p>
<p>This will get your numbers back to the correct percentages so that your presentation is showing the correct numbers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/google-analytics-2012-navigation-summary-explained/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO: Updates and Predictions for 2013</title>
		<link>http://www.simpleinbound.com/seo-updates-and-predictions-for-2013/</link>
		<comments>http://www.simpleinbound.com/seo-updates-and-predictions-for-2013/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 18:05:44 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=255</guid>
		<description><![CDATA[Welcome to my annual posting of new trends, changes and predictions occurring within the SEO industry. Now to be fair, my data is collected, compiled, evaluated and re-processed to bring you the most up to date trends and concerns within &#8230; <a href="http://www.simpleinbound.com/seo-updates-and-predictions-for-2013/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/seo/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" alt="simpleinbound seo SEO: Updates and Predictions for 2013" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-seo.png" width="108" height="111" /></a>Welcome to my annual posting of new trends, changes and predictions occurring within the SEO industry. Now to be fair, my data is collected, compiled, evaluated and re-processed to bring you the most up to date trends and concerns within the SEO industry. As a process, I believe the best bet is to collect the best opinions and rumors reported from multiple sources, so that I can stay a bit more comprehensive from a collective perspective. The following are suggestions and “gut” instinct trends to expect in 2013</p>
<p>In reflection, we need to point out 2 of the biggest changes that occurred last year on the Google end of things. These updates pretty much changed the playing field for SEO professionals:<span id="more-255"></span></p>
<p><strong>Google major updates from 2012 to keep aware of:</strong></p>
<p><strong>PANDA:</strong><br />
targeted low quality sites who had depended on link building tactics as their business model.<br />
(such as article marketing sites) &#8211; this change has effected smaller micro-sites that are used to push link value back to hub sites.</p>
<p><strong>PENGUIN:</strong><br />
targeted over-optimized websites, too much keyword-based anchor text<br />
also sites involved in link building schemes</p>
<p><em>(aka &#8211; Scraped content, spun articles and artificial link profiles )</em></p>
<p>_____________________________________</p>
<p>I also want to mention a new tool that popped up. I&#8217;ve listed some notes for those who want a quick overview:</p>
<p><strong>Update:</strong></p>
<p><strong>New Google Tool</strong><br />
tool that enables you to disavow links to your site<br />
(clean up spammy backlinks that are low quality or unnunatural links notification / warning)<br />
(ex: disallow p*rn sites, etc)<br />
Disavow links page:<br />
<a href="http://www.google.com/webmasters/tools/disavow-links-main" target="_blank">http://www.google.com/webmasters/tools/disavow-links-main</a></p>
<p><strong>Q: Will most sites need to use this tool?</strong><br />
<em>A: No. The vast, vast majority of sites do not need to use this tool in any way. If you’re not sure what the tool does or whether you need to use it, you probably shouldn’t use it. (Google statement)</em></p>
<p>Can takes week to clear bad links</p>
<p>_____________________________________</p>
<p>Ok moving on, we have the collective of upcoming trends / predictions. Some of this might seem redundant however it is important to note what is changing and what may not</p>
<p><strong>Updates / Predictions:</strong>  <strong>SEO for 2013</strong></p>
<p><strong>1-</strong> <strong>There has been a crackdown on low-quality Exact Match Domains (EMDs), Small sites</strong><br />
(see <strong>PANDA</strong>) &#8211; This Google change continues to evolve suggesting that small link bait sites are becoming a thing of the past as an SEO tool.  The important thing to note is that it “should” reduce those 1000’s of spam sites influencing the rankings.</p>
<p><strong>2</strong>- <strong>Natural Anchor Text &#8211; Diversify | make natural | don’t obsess over it!</strong><br />
A takeaway suggestion in regards to over-optimizing your pages with inner links. A natural order in this case is your best bet.</p>
<p><strong>3</strong>- <strong>Build Value in your product (rather than using all shortcuts in your product)</strong><br />
(focused on building a brand for the future &#8211; long term)<br />
This should be a given&#8230;.less weight will be given to ONLY SEO optimized sites. A return to the old rule school of creating great prodcuts first.</p>
<p><strong>Takeaway:</strong> Get more people talking about your product than you trying to convince them</p>
<p><strong>4- More emphasis on video promotions (recommended)</strong><br />
YouTube and related is hot! &#8211; More folks are clamoring for video content. Video is not slowing down.</p>
<p><strong>5- More emphasis on “social signals” in SERPS rankings (may be a major ranking factor)</strong><br />
(Google will increasingly take signals from your social media profiles (especially Google+)<br />
(<strong>AuthorRank</strong> uses Google Plus profiles)</p>
<p><strong>5B &#8211; Anticipate the full implementation of Authorship into Google’s algorithm this coming year.</strong><br />
(Authorship allows Google to identify the real deal (through things like page sharing) from the imitation or emulation of expertise.)</p>
<p><strong>Takeaway:</strong> Don’t ignore the potential that G+ can have on your posts for ranking. While G+ is slow moving, the intention is for it to become a component</p>
<p><strong>6- Anticipate increased weight for Mobile Friendly Websites</strong> &#8211; mobile is moving forward as a prime factor</p>
<p><strong>7- Expect more effort towards target audiences, researching keywords, and producing quality content vs. simply buying links that search engines ignore.</strong></p>
<p><strong>8- Google will try to put an end to search result manipulation so that it can generate more Adwords revenue</strong>.<br />
This is a prediction that makes alot of sense from a financial aspect for Google. I’ve read this in numerous sources &#8211; also a possibility to giving weight to PAID results to level off SEO manipulation (white hat AND black hat)</p>
<p><strong>9- As always &#8211; more weight on compelling content  (age ol term &#8211; Quality vs Quantity)</strong><br />
(Though I prefer ..more quality quantity)</p>
<p><strong>10- SEO to become more competitive with changes mentioned AND Google business model restructures</strong></p>
<p><strong>11- CONTENT &#8211; Favoritism to longer posts &#8211; (also mentioned last year)</strong><br />
<strong>Takeaway:</strong><br />
- longer posts (articles, pages)<br />
- quality content<br />
- less spammy tactics<br />
- “average” use of inner linking opposed to abusive inner linking</p>
<p><strong>12- PR and Social are now playing such a key role towards influencing search rankings that most great links are now created as a by-product of good PR.</strong></p>
<p><strong>13- Personalized search results will begin to take more precedence</strong><br />
<em>(influencing personalized search is very important)</em></p>
<p><strong>14- SEO has evolved from pure SEO to</strong><em> (conversion rate optimization, digital marketing, social signals building, content building)</em></p>
<p><strong>Takeaway:</strong> An SEO’s job is not as cut and dry as in previous years. The modern SEO role will have to cross over into other areas embracing  “Inbound Marketing” as a whole</p>
<p><strong>15-  Unique content still matters as much as ever!  (thank God!)</strong></p>
<p><strong>16- The Rule of 60 is also important for your title tag</strong>. <em>As Ruth Burr wrote in a recent case study, “When your title tag is too long, instead of simply truncating it and adding an ellipsis to the end the way they used to, Google is trying to algorithmically determine a better title for the post.”</em></p>
<p><strong>Takeaway rule: </strong> Length: (do not exceed 70 characters) or 6 to 12 words”</p>
<p><strong>17- Current SEO On-page Tactics</strong> &#8211; Continue as ongoing</p>
<p><strong>18-</strong> <em>We are approaching the ending of “link building” and into the era of “link earning”</em>! &#8211; (well said by <strong>SEOMOZ!</strong>!)<strong><em><br />
</em></strong></p>
<p>__________________________________<br />
<strong>Google &#8211; Matt Cutts: important statements last year</strong></p>
<p><em>- Cutts pointed out that Google doesn’t hate SEO. The goal of SEO is to make websites more crawlable and faster. When SEO becomes an issue is when spam comes into play, such as if you go overboard buying links, doing comment spam links, or keyword stuffing</em></p>
<p><em>- The number of Twitter followers is a potential social signal. Google isn’t able to crawl Facebook, either because people set their profiles to private or Google is blocked from crawling. When Google lost access to Twitter’s firehose, Twitter blocked Google for several weeks. If Google can’t crawl and see how many people you follow or who follow you, they can’t use that as a reliable signal.</em></p>
<p><em>- Create a site that will stand the test of time, Cutts said. A site that people will tell their friends about and bookmark. That&#8217;s the site Google wants people to build.</em></p>
<p><em>- duplicate content &#8211; Google tries to show the content they think came first or has the most value.</em><br />
__________________________________</p>
<p><strong>RESOURCE NATION: (suggestions for 2013)</strong></p>
<p><strong>1. Commit to writing more content (blog at least once a week)</strong></p>
<p><strong>2. Get at least one quality link each week.</strong></p>
<p><strong>3. Add new content/update old content on your website.</strong></p>
<p>(take a look at your analytics and see which pages are performing the best and which ones are doing the worst, focus on fixing the worst ones)<br />
__________________________________</p>
<p><strong>SEO &#8211; New Model (suggested trends)</strong></p>
<p>Blogs &#8211; Write appealing content that other people will WANT to link to.<br />
(social validation)</p>
<p><strong>Visual Content</strong> &#8211; Powerful, unique, or even comical, images lead people to link to your website.<br />
This includes video content as well!</p>
<p><strong>Product Launches</strong> &#8211; product launch inspires people to talk about your business<br />
(we do this already)</p>
<p><strong>Guest Blogging</strong><br />
Creating valuable content for other websites provides an easy to link back to your business<br />
(doesn&#8217;t seem to be an option at the moment)</p>
<p>______________________________________</p>
<p><strong>SEOMOZ comparison Breakdown</strong><br />
Changes &#8211; Change of focus (old SEO vs New SEO)</p>
<p><em>1- Partnerships and Cross Promotions OVER Link Exchanges / Reciprocal</em></p>
<p><em>2- Social Sharing of Organic Links OVER Email Blasts</em></p>
<p><em>3- Links coming from Direct content OVER purchasing Links</em></p>
<p><em>4- Curated Lists (Yelps list of, Business list of&#8230;) OVER directory adding</em></p>
<p><em>5- Guest Postings (niche) OVER Article Marketing</em></p>
<p><em>6- Communities that Link organically OVER Forum Commenting</em></p>
<p><strong>Sources for evaluation:</strong></p>
<p><a href="http://www.seomoz.org/blog/why-big-content-is-worth-the-risk" target="_blank">Source 1</a><br />
<a href="http://www.websitemagazine.com/content/blogs/posts/pages/link-building-for-the-time-amp-resource-strapped.aspx" target="_blank">Source 2</a><br />
<a href="http://www.seomoz.org/blog/getting-onpage-seo-right-in-2012-and-beyond-whiteboard-friday" target="_blank">Source 3</a><br />
<a href="http://www.seomoz.org/blog/the-death-of-link-building-and-the-rebirth-of-link-earning-whiteboard-friday" target="_blank">Source 4</a><br />
<a href="http://www.seomoz.org/blog/top-1-seo-tips-for-2013 http://blog.triphp.com/seo/seo-predictions-for-20122013.htm" target="_blank">Source 5</a><br />
<a href="http://visual.ly/important-seo-trends-2012-2013" target="_blank">Source 6</a><br />
<a href="http://www.forbes.com/sites/davidkwilliams/2012/12/19/what-will-your-seo-look-like-in-2013-the-experts-weigh-in/" target="_blank">Source 7</a><br />
<a href="http://www.resourcenation.com/blog/whats-on-your-seo-to-do-list-for-2013/35739/" target="_blank">Source 8</a><br />
<a href="http://dannydenhard.com/seo-market-review-2013/" target="_blank">Source 9</a><br />
<a href="http://seobook.blog.com/top-25-seo-predictions-for-2013-from-top-seos/" target="_blank">Source 10</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/seo-updates-and-predictions-for-2013/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 Steps to Competent Direct Marketing</title>
		<link>http://www.simpleinbound.com/10-steps-to-competent-direct-marketing/</link>
		<comments>http://www.simpleinbound.com/10-steps-to-competent-direct-marketing/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 01:00:13 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Direct Marketing]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=254</guid>
		<description><![CDATA[Ok, if you haven&#8217;t checked out my previous article &#8220;Direct Marketing &#8211; What is it?&#8220;, then you might want to start with that as an introduction. The following is a list I compiled to aid marketers with embracing their &#8220;Direct &#8230; <a href="http://www.simpleinbound.com/10-steps-to-competent-direct-marketing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/marketing/"><img class="size-full wp-image-80 alignright" title="simpleinbound-marketing" alt="simpleinbound marketing 10 Steps to Competent Direct Marketing" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-marketing.png" width="108" height="111" /></a>Ok, if you haven&#8217;t checked out my previous article &#8220;<a href="http://www.simpleinbound.com/direct-marketing-what-is-it/"><strong>Direct Marketing &#8211; What is it?</strong></a>&#8220;, then you might want to start with that as an introduction. The following is a list I compiled to aid marketers with embracing their &#8220;Direct marketing&#8221; efforts</p>
<p><strong>WHAT DO YOU ADVISE?<br />
</strong></p>
<p><strong>1- Timing is everything!</strong></p>
<p>You want to roll out your &#8220;winter wear&#8221; campaigns during the snow season, not before, not when it&#8217;s not needed. This way by the time it &#8220;is&#8221; season, they are not worn down with a smattering of ads from the summer months</p>
<p><strong>2- Higher quality leads are key to having a better ROI!</strong></p>
<p>Again, the key term here is &#8220;quality leads&#8221;. Spamming will cost you time and annoy&#8230;better yet, let&#8217;s make sure who your sending to &#8220;has&#8221; an interest in what your selling.</p>
<p><strong>3- Keep your list fresh!</strong></p>
<p>Always make plans to update your list, delete dead accounts and keep it current, so that your efforts are going out to fresh prospects, not hand me down email addresses. It has been written that 40% of your returns relies on the &#8220;correct&#8221; list being used, whether it&#8217;s by direct mail or email.</p>
<p><strong>4- Target those who are more &#8220;likely&#8221; to take an interest in your product</strong></p>
<p>This comes from efficient profiling and a trusted database</p>
<p><strong>5- Educate your customers!</strong></p>
<p>Don&#8217;t just sell, sell, sell (or rather market market market ;)&#8230;..give them some intelligent info as to why they &#8220;should&#8221; choose what you are selling. Raise the awareness of your brand!</p>
<p><strong>6- Build your customers profiles!</strong></p>
<p>Learn and fine tune who is best suited for what. A good example of this can be seen on the <strong>Amazon.com</strong> web site. Have you ever noticed the recommendations seem to match what your interested in? HMM&#8230;.it&#8217;s like they read minds or something! Make sure you have means to capture this data and analyze it.<span id="more-254"></span></p>
<p><strong>7- Offers &#8211; Make a CTA (call to action)</strong>!</p>
<p>Give them an incentive to purchase&#8230;.examples: limited offers, coupons, specials, a certain need, a demand..etc</p>
<p><strong>8- Test, Test, Test!</strong></p>
<p>Don&#8217;t take your eye off the ball &#8211; You must keep with the times to recognize consumer change and migration. Track the results of your campaigns. Your also looking for that &#8220;low hanging fruit&#8221;, the opportunities that are waiting to be picked. This can be accomplished by measuring your &#8220;customer experience&#8221;.</p>
<p><strong>9- Provide many ways for clients to contact you!</strong></p>
<p>This shows that you are concerned about your clients and haven&#8217;t limited it to just mail in, just web or just phone&#8230;give them variety!</p>
<p><strong>10- Testimonials have power!</strong></p>
<p>People like to hear the response of &#8220;real people&#8221; (those who purchased something from you and had a great experience). Consider adding some to your corporation&#8217;s web site.</p>
<p>Well, I hope that gives you a foundation to work with. Stayed tuned for future articles!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/10-steps-to-competent-direct-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Direct Marketing &#8211; What is it?</title>
		<link>http://www.simpleinbound.com/direct-marketing-what-is-it/</link>
		<comments>http://www.simpleinbound.com/direct-marketing-what-is-it/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 00:06:31 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Direct Marketing]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=253</guid>
		<description><![CDATA[Direct Marketing! What&#8217;s it all about? You may have heard this term thrown around over the years, or you might have already actually incorporated the style into your own marketing efforts. Those who use it, tend to stand behind it, &#8230; <a href="http://www.simpleinbound.com/direct-marketing-what-is-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/marketing/"><img class="size-full wp-image-80 alignright" title="simpleinbound-marketing" alt="simpleinbound marketing Direct Marketing   What is it?" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-marketing.png" width="108" height="111" /></a><strong>Direct Marketing! What&#8217;s it all about?</strong></p>
<p>You may have heard this term thrown around over the years, or you might have already actually incorporated the style into your own marketing efforts. Those who use it, tend to stand behind it, as it&#8217;s a form a marketing that really works if you let yourself wrap your head around it. It has been called by many as one of the most &#8220;<em>efficient&#8221;</em> forms of marketing. now, the emphasis of this site is of course &#8220;Inbound Marketing&#8221;, however many principles began with various forms of marketing such as DM (and in many ways cross-over)</p>
<p>Though for the purpose of this article, my aim is to list out the key points of what it is and why it&#8217;s important. It has been a form of marketing that many have already utilized and continue to utilize to provide the best &#8220;experience&#8221; and &#8220;need&#8221; for your customers.</p>
<p><strong>First a few key directives:</strong></p>
<p>Spam = annoying, old school, bothersome, could and &#8220;will&#8221; put off&#8221; potential customers</p>
<p><strong>Wait! what do you mean&#8230;.my mailing list may be in the 1000&#8242;s, but I &#8220;do&#8221; get &#8220;some response?</strong></p>
<p>Yep, well a mailing list is part of it, but not the old school spammy way. The &#8220;<em>send it and they will come</em>&#8221; days are a thing of the past, and it&#8217;s definitely not the way of <strong>Direct Marketing</strong>.</p>
<p>Remember this simple 3 step directive:</p>
<p><strong>DATA&#8211;&gt; TO INSIGHT &#8212;&gt;TO ACTION</strong></p>
<p><strong>So what is it?</strong></p>
<p>Essentially it&#8217;s the practice of taking a product and trying to sell it to those who have an &#8220;interest&#8221; in what your selling. Say for instance a friend, or an associate. Better yet, those who trust you and appreciate your efforts in marketing them things that they have a need for. It&#8217;s educating your customer, so that they can make the right decisions. It&#8217;s educating them on why &#8220;what&#8221; you have, is what they are looking for&#8221;. In short it is a form of &#8220;<em>customer relationship management</em>&#8220;.<span id="more-253"></span></p>
<p><strong>So how does this all work?</strong></p>
<p>You&#8217;ll hear the term &#8220;database&#8221; often. A trusted / professionally scrutinized database is key to your efforts. Sometimes if you are starting from scratch or trying to up your Intel, then it is recommended that you A/B test at least 3 main elements of your campaigns to fine tune your data.</p>
<p><strong>What are those?</strong><br />
<strong>1- Pricing</strong><br />
<strong> 2- Your Offer</strong><br />
<strong> 3- Your opening statement (or headline)</strong></p>
<p>This is accomplished by mailing out your offer in 3 separate variations to see which of the 3 produce a better response and better ROI. This can be tested more than once to fine tune your results data.</p>
<p><strong>Results!</strong><br />
You can actually measure the data, refine it and repeat! This is how master marketers get the right info and the right products into the hands of those who desire or need it.</p>
<p><strong>Forms of Direct marketing:</strong><br />
1- mailing (direct mail)<br />
2- email<br />
3- tweets<br />
4- postings</p>
<p><strong>Takeaway:</strong></p>
<p>Whittle your list down to those who are most likely to take advantage of your offers. Once they do, track where they came from, who uses what, and what they use it for. This can be elaborated on by listing which zip codes tend to respond to your marketing efforts most. In other words your &#8220;demographics&#8221; and who you should target..how much did they spend.</p>
<p><strong>Make sense?</strong></p>
<p>Direct marketing can be a very professional and consistent form of advertising.</p>
<p>Make sure to check out my article on &#8220;<a href="http://www.simpleinbound.com/10-steps-to-competent-direct-marketing/"><strong>10 Steps to Competent Direct Marketing</strong></a>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/direct-marketing-what-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Fixing a Corrupted Database (re-installing a clean one)</title>
		<link>http://www.simpleinbound.com/wordpress-fixing-a-corrupted-database-re-installing-a-clean-one/</link>
		<comments>http://www.simpleinbound.com/wordpress-fixing-a-corrupted-database-re-installing-a-clean-one/#comments</comments>
		<pubDate>Fri, 04 Jan 2013 00:24:03 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Technical Aids]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=252</guid>
		<description><![CDATA[Disclaimer: - Make sure you have clean back ups of your DATABASE (I suggest more than 1) (keep clean copies on your hard drive) &#8211; If you do not have backups, then you SHOULD NOT use this method This method &#8230; <a href="http://www.simpleinbound.com/wordpress-fixing-a-corrupted-database-re-installing-a-clean-one/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Fixing a Corrupted Database (re installing a clean one)" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a><strong>Disclaimer:</strong><br />
<em>- Make sure you have clean back ups of your DATABASE (I suggest more than 1)</em><br />
<em> (keep clean copies on your hard drive)</em><br />
<em> &#8211; If you do not have backups, then you SHOULD NOT use this method</em></p>
<p><span id="more-252"></span></p>
<p>This method assumes you have a sufficient understanding of WordPress files, and how to get into your <strong>MYSQL DATABASE</strong> datadase</p>
<p><strong>RECOMMENDATION for backup:</strong><br />
for decent auto scheduled backups, I suggest the plugin <a href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank"><strong>WP-DBManager</strong></a><br />
(set it to backup your database in the &#8220;sql.gz&#8221; format (GZIP )<br />
(you can set this under <strong>DATABASE&#8211;&gt;DB OPTIONS</strong> (once plugin is installed)<br />
- where it says:<br />
<strong>Automatic Scheduling</strong><br />
(Automatic Backing Up Of DB) &#8211; set <strong>Gzip</strong> to <strong>YES</strong></p>
<p><em>If unsure, about your backups, you can always create a BRAND NEW DATABASE or which you &#8220;import into&#8221; using the following method:</em></p>
<p><strong>STEPS:</strong></p>
<p><strong>1</strong>- Login to YOUR ISP PROVIDER, go into the section that resembles <strong>MYSQL DATABASE</strong></p>
<p><strong>2</strong>- Find the corrupt database (should know the <strong>name</strong> of the database first (if more than one databases))<br />
<em>(is it fixable or corrupt)?</em><br />
(if corrupt then move forward, if fixable then you only need to do a <strong>REPAIR</strong>)</p>
<p><strong>3</strong>- Create a new <strong>USERNAME</strong> login (and password) (thru your <strong>MYSQL DATABASE</strong> section of ISP site)</p>
<p><strong>4</strong>- Go into FTP files and update your <strong>WP-CONFIG.PHP</strong> with your new <strong>USERNAME</strong> and <strong>PASSWORD</strong><br />
(- also download your last working DATABASE to your hard drive (from the folder <strong>WP-CONTENT&#8211;&gt;BACKUP-DB</strong> if using the plugin mentioned above)</p>
<p><strong>5</strong>- Go into the new login for your Database, &#8220;<strong>CHECK ALL</strong>&#8220;, then choose <strong>&#8220;DROP</strong>&#8221; from the drop down<br />
<em>(this empties out the database back to zero) &#8211; SO BE CERTAIN THAT you have a backup saved somewhere first!</em></p>
<p><strong>6</strong>- Grab your backed up DATABASE FILE (should be something like: 1356516987_-_d60773932.sql.gz)</p>
<p><em>Database backups: I get these from using the plugin &#8221; <strong>WP-DBManager</strong>&#8220;, which is set to back up every day</em></p>
<p><strong>7-</strong> Upload this directly to your database by using the<strong> IMPORT</strong> function in <strong>MYSQL DATABASE</strong><br />
(this will rewrite the files back into your empty database with your older non corrupt database files)<br />
(be patient, as it might take a few minutes)</p>
<p><strong>8</strong>- Now you should be able to go directly into your WordPress site<br />
by typing in:<br />
<strong><em>http://www.yoursitename.com/wp-admin/</em></strong></p>
<p><strong>9</strong>- Does the site come up and re-populate like before?<br />
If not, either something went wrong with the database, or your <strong>THEME</strong> files are corrupt as well, of which you should do a full reinstall<br />
(to reinstate clean WordPress files)</p>
<p>If you are able to get in with no problems, I suggest doing 2 main things:<br />
1- Go into <strong>DASHBOARD&#8211;&gt;UPDATES</strong>, then click the <strong>REINSTAL</strong>L on the &#8220;<em>latest version of WordPres</em>s.&#8221;<br />
<em>(you should also update to the most current version at this time)</em><br />
2- Go into <strong>SETTINGS&#8211;&gt;PERMALINKS</strong>, click the <strong>SAVE CHANGES</strong> button<br />
<em>(this is necessary to refresh all your links, so that your directories are all connected again)</em></p>
<p>That&#8217;s it!</p>
<p><strong>OTHER NOTES:</strong><br />
- after, I suggest locking down security measures, such as:<br />
- changing login / password<br />
- update your .htaccess file with security measures (or the ones you had in their previously, before REINSTALL)<br />
- check your theme files, maybe overwrite thru FTP with your previous backed up ones<br />
- Delete any theme files that you are not using (from the FTP)<br />
(sometimes, these unused theme files contain back doors for Hackers to get in)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-fixing-a-corrupted-database-re-installing-a-clean-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics: Extract All Keywords from Range into single .pdf?</title>
		<link>http://www.simpleinbound.com/google-analytics-extract-all-keywords-from-range-into-single-pdf/</link>
		<comments>http://www.simpleinbound.com/google-analytics-extract-all-keywords-from-range-into-single-pdf/#comments</comments>
		<pubDate>Wed, 19 Dec 2012 00:26:10 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[keywords]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=249</guid>
		<description><![CDATA[In the new version of Google Analytics, it might not be so obvious how to get all your keywords extracted from a given date range onto 1 page. A few easy steps will send you in the right direction. 1- &#8230; <a href="http://www.simpleinbound.com/google-analytics-extract-all-keywords-from-range-into-single-pdf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/technical-aids/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-technical.png" alt="simpleinbound technical Google Analytics: Extract All Keywords from Range into single .pdf?" width="108" height="111" /></a>In the new version of Google Analytics, it might not be so obvious how to get all your keywords extracted from a given date range onto 1 page.<br />
A few easy steps will send you in the right direction.</p>
<p><strong>1-</strong> Log into GA<br />
<strong>2-</strong> Go to <strong>TRAFFIC SOURCES&#8212;&gt;SOURCES&#8211;&gt;SEARCH&#8211;&gt;ORGANIC</strong> (if only looking at organic)<br />
<strong>3-</strong> change the date range to desired range<br />
<strong>4-</strong> Go  to bottom of page and look at how many keywords are listed (for instance it might say &#8220;1- 841&#8243; or such).<br />
This tells you how many keywords for the period you are looking up there are.<br />
<em>(For example, the total keyword count for me was 2033)</em><br />
<strong>5-</strong> Select 500 from bottom first<br />
<strong>6-</strong> Go to your URL listed at top in your browser.</p>
<p>It should look something like this: <span id="more-249"></span></p>
<p><em>https://www.google.com/analytics/web/?pli=1#report/trafficsources-organic/a2508626w4554830p4686234/%3F_.date00%3D20120401%26_.date01%3D20120630%26explorer-table.rowStart%3D0%26explorer-table.rowCount%3D<strong>500/</strong></em></p>
<p>Now change the end of the URL to your total number (<em>for instance mine would be 2033</em>) &#8211; see example</p>
<p><em>https://www.google.com/analytics/web/?pli=1#report/trafficsources-organic/a2508626w4554830p4686234/%3F_.date00%3D20120401%26_.date01%3D20120630%26explorer-table.rowStart%3D0%26explorer-table.rowCount%3D<strong>2033/</strong></em></p>
<p><strong>HIT ENTER!</strong></p>
<p>That&#8217;s it, you should now have your entire collection of keywords showing in GA, you can now export to pdf, or to Excel!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/google-analytics-extract-all-keywords-from-range-into-single-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Protect your WordPress site from BAD BOTS</title>
		<link>http://www.simpleinbound.com/wordpress-protect-your-wordpress-site-from-bad-bots/</link>
		<comments>http://www.simpleinbound.com/wordpress-protect-your-wordpress-site-from-bad-bots/#comments</comments>
		<pubDate>Wed, 24 Oct 2012 23:26:13 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Technical Aids]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Bad bots]]></category>
		<category><![CDATA[Black Hole]]></category>
		<category><![CDATA[perishablepress]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[robots.txt]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=247</guid>
		<description><![CDATA[How to block bots from seeing your website After dealing with a recent issue of BAD bots hogging up my server resources, I began to look into solutions for keeping these nasty critters out. At one point my web site &#8230; <a href="http://www.simpleinbound.com/wordpress-protect-your-wordpress-site-from-bad-bots/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Protect your Wordpress site from BAD BOTS" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a><strong>How to block bots from seeing your website</strong></p>
<p>After dealing with a recent issue of BAD bots hogging up my server resources, I began to look into solutions for keeping these nasty critters out. At one point my web site was even shut down BY my ISP because it reported close to 414K hits from bots that were hogging the resources (on a shared server, that is)</p>
<p>I did give the solution &#8220;<a href="http://perishablepress.com/blackhole-bad-bots/" target="_blank"><strong>Black Hole</strong></a>&#8221; a whirl, however after following instructions, my site wouldn&#8217;t come up due to errors.<br />
So instead of trying to figure out why a recommendation that was actually quite old (2010) wasn&#8217;t working I went a different direction.<br />
(Note: if &#8220;Black Hole&#8221; is still working, then &#8220;<strong>perishablepress</strong>&#8221; might want to update their notes to current rather than adding on a addendum that seemed to confuse.<span id="more-247"></span></p>
<p>I did find a solution on the site <a href="http://hackrepair.com/how-to-block-bots-from-seeing-your-website-bad-bots-and-drive-by-hacks-explained" target="_blank">hackrespair.com</a>, that seemed to be just what I was looking for.</p>
<p>In short, by adding a bit of code to your<strong> .htaccess file</strong>, you can cut the BAD BOTS of at the pass</p>
<p>The link for the code is located here: <a href="http://pastebin.com/5Hw9KZnW">http://pastebin.com/5Hw9KZnW</a></p>
<p>I suggest cutting and pasting FROM section marked &#8220;<strong>RAW Paste Data</strong>&#8221; on the bottom (also it makes sense to check back as the code is updated &#8211; current right now to June 2012)</p>
<p>Then follow these recommended steps from the site:</p>
<p>1.First, see the list using the above link.<br />
2.Copy it to your computer’s memory.<br />
3.Next open your .htaccess file via your editor.<br />
4.Paste this list at the very bottom of your .htaccess file</p>
<p>Note: you can also block using the robots.txt file, however this method seemed to be a bit tighter in keeping the bots out than the robots.txt method</p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-protect-your-wordpress-site-from-bad-bots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics: Difference Between ALL PAGES and LANDING PAGES data</title>
		<link>http://www.simpleinbound.com/google-analytics-difference-between-all-pages-and-landing-pages-data/</link>
		<comments>http://www.simpleinbound.com/google-analytics-difference-between-all-pages-and-landing-pages-data/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 23:25:49 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[All Pages]]></category>
		<category><![CDATA[Landing Pages]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=244</guid>
		<description><![CDATA[As Google Analytics has evolved it makes sense to be able to differentiate the different kinds of data that are available to you. As one set of metrics may not match the other set of metrics. I discovered this when &#8230; <a href="http://www.simpleinbound.com/google-analytics-difference-between-all-pages-and-landing-pages-data/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/technical-aids/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-technical.png" alt="simpleinbound technical Google Analytics: Difference Between ALL PAGES and LANDING PAGES data" width="108" height="111" /></a>As Google Analytics has evolved it makes sense to be able to differentiate the different kinds of data that are available to you. As one set of metrics may not match the other set of metrics. I discovered this when trying to determine user trends on the months data and how others move across a site</p>
<p>So for starters let&#8217;s look at the 2 metrics available to you:</p>
<p>The confusion might occur when you flip between the 2 metric pages (ALL and LANDING) and start to see different readings on higher ranking pages. I believe this metric had to be addressed depending on &#8220;what&#8221; information you are seeking. Hopefully the statement below will shed some light on the 2</p>
<p><strong>ALL PAGES</strong><br />
(located under <strong>CONTENT&#8211;&gt;SITE CONTENT&#8211;&gt;ALL PAGES)</strong><br />
Refers to your most popular page views.</p>
<p>So say 3 visitors each visit a different page on your site then click over to the homepage, the 3 different pages would get 1 page view and the home page would get 3 page views<br />
= giving the home page a higher PAGE VIEW ranking (thus ALL PAGES), though this doesn&#8217;t mean from the statement just made that 3 visitors came to your site LANDING on the homepage first)<span id="more-244"></span></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>LANDING PAGES</strong><br />
(located under <strong>CONTENT&#8211;&gt;SITE CONTENT&#8211;&gt;LANDING PAGES</strong>)<br />
- Landing Pages refer to the 1st page a visitor lands on (on your site) from another web site, such as Google, Bing or other. Since Google Analytics doesn&#8217;t have a listing for referrals (under) this section), I would assume it also includes landing on your page from links as well)</p>
<p>- Landing Pages would be more relative to measuring your SEO results as since they are coming from an outside reference, such as a Google listing or search engine. Still you might get a better perspective referring to the keywords directly under the section (TRAFFIC SOURCES&#8211;&gt;SOURCES&#8211;&gt;SEARCH&#8211;&gt;ORGANIC)</p>
<p>Conclusion: Between the 2 metrics, you can determine a couple things. What pages are most popular on your site (once they are on there) and what pages are most popular when entering from the outside for the first time.</p>
<p>1 metric tells you what content visitors are most interested in (or maybe sections of your site for that matter). The other tells you what is most popular for drawing others in.</p>
<p><strong>Google Analytics: Difference Between ALL PAGES and LANDING PAGES data</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/google-analytics-difference-between-all-pages-and-landing-pages-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress: Quick Cache Plugin &#8211; Setting up a Custom &#8216;Empty Cache&#8217; Script</title>
		<link>http://www.simpleinbound.com/wordpress-quick-cache-plugin-setting-up-a-custom-empty-cache-script/</link>
		<comments>http://www.simpleinbound.com/wordpress-quick-cache-plugin-setting-up-a-custom-empty-cache-script/#comments</comments>
		<pubDate>Fri, 05 Oct 2012 00:36:50 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Empty Cache]]></category>
		<category><![CDATA[Maxdir size limit alert]]></category>
		<category><![CDATA[Quick Cache]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=243</guid>
		<description><![CDATA[This entry is based on a need that I came across using the great WordPress &#8220;Quick Cache&#8221; plug in. While I found the plug in to be perfect for my needs (and much more compatible than &#8220;W3 Total Cache&#8221; or &#8230; <a href="http://www.simpleinbound.com/wordpress-quick-cache-plugin-setting-up-a-custom-empty-cache-script/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: Quick Cache Plugin   Setting up a Custom Empty Cache Script" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a>This entry is based on a need that I came across using the great WordPress &#8220;<a href="http://wordpress.org/extend/plugins/quick-cache/">Quick Cache&#8221; plug in</a>. While I found the plug in to be perfect for my needs (and much more compatible than &#8220;<a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a>&#8221; or &#8220;<a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a>&#8220;) I was running into daily ISP requests from my service provider that the &#8220;cache&#8221; folder was filling up rapidly with 1000&#8242;s of files causing what they call &#8220;<strong><em>Maxdir size limit alert</em></strong>&#8221;</p>
<p><strong>The official memo was</strong>:</p>
<p><em>wp-content/cache/ are exceeding the maxdir size limit. This directory is filling up with thousands of files rapidly, causing issues for the server.</em></p>
<p>To be honest I didn&#8217;t see a working section in the &#8220;<strong>Quick Cache</strong>&#8221; plugin to deal with this issue<br />
<em>(which is to empty the cache folder daily or more</em>)</p>
<p>So I came up with a solution:<span id="more-243"></span></p>
<p>2 things are needed</p>
<p><strong>- A script</strong><br />
<strong>- a plugin to run the script automatically thru WordPress (at intervals)</strong></p>
<p>1- Install plugin<br />
<a href="http://wordpress.org/extend/plugins/crony/">http://wordpress.org/extend/plugins/crony/</a></p>
<p>2- Go to &#8211; CRONJOBS&#8211;&gt;MANAGE CRONJOBS&#8212;&gt;&#8221;<strong>Add new Cron job</strong>&#8221;</p>
<p>3- add script to section &#8220;<strong>Custom PHP to Run</strong>&#8221;<br />
(note for script, you&#8217;ll need to <a href="http://www.simpleinbound.com/php-script-to-delete-files-on-server/">grab it from this article)</a></p>
<p>4- set &#8220;schedule&#8221; to &#8220;Once Daily&#8221; (or your desired amount)</p>
<p>5- SAVE changes</p>
<p>This will run a PHP script that will go into the &#8220;<strong>Quick Cache</strong>&#8221; folder and empty the contents daily. It&#8217;s nice because it works seamlessly in the background</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-quick-cache-plugin-setting-up-a-custom-empty-cache-script/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PHP Script to Delete Files on Server (from a folder)</title>
		<link>http://www.simpleinbound.com/php-script-to-delete-files-on-server/</link>
		<comments>http://www.simpleinbound.com/php-script-to-delete-files-on-server/#comments</comments>
		<pubDate>Wed, 03 Oct 2012 23:29:16 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Technical Aids]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Script]]></category>
		<category><![CDATA[Quick Cache]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=242</guid>
		<description><![CDATA[PHP SCRIPT TO DELETE FILES ON SERVER? (OR how to set up a script that ONLY deletes the contents of a folder and NOT the folder itself) Objective: You need to create a PHP script and place it in your ROOT &#8230; <a href="http://www.simpleinbound.com/php-script-to-delete-files-on-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/technical-aids/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-technical.png" alt="simpleinbound technical PHP Script to Delete Files on Server (from a folder)" width="108" height="111" /></a>PHP SCRIPT TO DELETE FILES ON SERVER?<br />
<em>(OR how to set up a script that ONLY deletes the contents of a folder and <strong>NOT</strong> the folder itself)</em></p>
<p>Objective: You need to create a <strong>PHP script</strong> and place it in your ROOT directory</p>
<p><em>Disclaimer: Read directions and MAKE SURE your path is correct or you could end up deleting stuff you didn&#8217;t want to</em><br />
<em> (in other words run a test after you&#8217;ve backed up your site)</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
You need to create a <strong>PHP script</strong> and place it in your ROOT directory</p>
<p><strong>1-</strong> to do this, create a text document and paste in the following code:<span id="more-242"></span></p>
<p><em>&lt;?php</em><br />
<em>function remove($dirname = &#8216;.&#8217;)</em><br />
<em>{</em><br />
<em>        if (is_dir($dirname))</em><br />
<em>        {</em><br />
<em>                echo &#8220;$dirname is a directory.&lt;br /&gt;&#8221;;</em></p>
<p><em>                if ($handle = @opendir($dirname))</em><br />
<em>                {</em><br />
<em>                        while (($file = readdir($handle)) !== false)</em><br />
<em>                        {</em><br />
<em>                                if ($file != &#8220;.&#8221; &amp;&amp; $file != &#8220;..&#8221;)</em><br />
<em>                                {</em><br />
<em>                                        echo &#8220;$file&lt;br /&gt;&#8221;;</em></p>
<p><em>                                        $fullpath = $dirname . &#8216;/&#8217; . $file;</em></p>
<p><em>                                        if (is_dir($fullpath))</em><br />
<em>                                        {</em><br />
<em>                                                remove($fullpath);</em><br />
<em>                                                @rmdir($fullpath);</em><br />
<em>                                        }</em><br />
<em>                                        else</em><br />
<em>                                        {</em><br />
<em>                                                @unlink($fullpath);</em><br />
<em>                                        }</em><br />
<em>                                }</em><br />
<em>                        }</em><br />
<em>                        closedir($handle);</em><br />
<em>                }</em><br />
<em>        }</em><br />
<em>}</em><br />
<em>remove(&#8216;test/&#8217;); // This is the directory folder that the files reside in to be deleted.</em><br />
<em>?&gt;</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>2- make sure that you replace the part of the code that says: (with the folder name that you want your contents emptied FROM)</strong></p>
<p><em>remove(&#8216;test/&#8217;); // This is the directory folder that the files reside in to be deleted.</em></p>
<p>So to clarify, if your folder is located at:<br />
(the folder that your want contents emptied from)</p>
<p>Example only:</p>
<p>http://www.simpleinbound.com/wp-content/cache/</p>
<p>then you need to add  <strong>wp-content/cache</strong>/ to the line, so that it looks like this</p>
<p><em>remove(<strong>&#8216;wp-content/cache/</strong>&#8216;); // This is the directory folder that the files reside in to be deleted.</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>3</strong>- Now <strong>SAVE</strong> this file, rename it <strong>emptycachescript.php</strong>, and upload to your ROOT diretcory</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
4- put some contents in the folder that you want things deleted from (<em>for purposes of testing)</em></p>
<p><strong>(NOTE YOU CAN TEST IF THIS IS WORKING BY RUNNING THE SCRIPT THRU YOUR BROWSER)</strong></p>
<p>SO you would type in:</p>
<p><a href="http://www.yoursite.com/emptycachescript.php">http://www.yoursite.com/emptycachescript.php</a></p>
<p>Now go back and check, to see if the folder is now empty?<br />
Yes? &#8211; cool then its working!</p>
<p>NOW that you&#8217;ve got the <strong>script</strong>, you can set it up to run thru your ISP, or cron or automated process plugin</p>
<p>_____________________________________________</p>
<p>WordPress users? I have added a solution for you<br />
<a href="http://www.simpleinbound.com/wordpress-quick-cache-plugin-setting-up-a-custom-empty-cache-script/">Please seed this post which details the process using the PHP script from this post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/php-script-to-delete-files-on-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress: How to Add Descriptions to your TAGS (on your Tag Pages)</title>
		<link>http://www.simpleinbound.com/wordpress-how-to-add-descriptions-to-your-tags-on-your-tag-pages/</link>
		<comments>http://www.simpleinbound.com/wordpress-how-to-add-descriptions-to-your-tags-on-your-tag-pages/#comments</comments>
		<pubDate>Thu, 27 Sep 2012 23:25:59 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Technical Aids]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[tag pages]]></category>
		<category><![CDATA[tage page descriptions]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=240</guid>
		<description><![CDATA[- WordPress &#8211; getting TAG descriptions to show up at the top of the page &#8211; TAG descriptions in WordPress &#8211; Adding to your TAG pages &#8211; HTML descriptions on TAG pages Did you know that you can have your &#8230; <a href="http://www.simpleinbound.com/wordpress-how-to-add-descriptions-to-your-tags-on-your-tag-pages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" alt="simpleinbound WP Wordpress: How to Add Descriptions to your TAGS (on your Tag Pages)" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" width="108" height="111" /></a><strong>- WordPress &#8211; getting TAG descriptions to show up at the top of the page</strong><br />
<strong> &#8211; TAG descriptions in WordPress &#8211; Adding to your TAG pages</strong><br />
<strong> &#8211; HTML descriptions on TAG pages</strong></p>
<p>Did you know that you can have your <strong>TAG descriptions</strong> visible on your WordPress pages? So you want TAG &#8220;descriptions&#8221; to show at the top of the page as well? Maybe you want to delete that ugly default that says</p>
<p>Example:  <em>&#8220;Tag Archives: Custom Font&#8221;</em></p>
<p>Why would you need this? Maybe you don&#8217;t want to have a category for everything in your blog. Maybe you have a special need to tag a few articles that have common categories but a specific tag (and you want that TAG to have a description showing that helps in SEO!!!) For instance, your articles might be categorized under &#8220;News&#8221;, but you want your tag page for tag &#8220;2012&#8243; to have &#8220;it&#8217;s own header description.<span id="more-240"></span></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Now to clarify the kind of pages I&#8217;m talking about, it might be a page like :</p>
<p><a href="http://www.simpleinbound.com/tag/custom-font/">http://www.simpleinbound.com/tag/custom-font/</a></p>
<p>which is a tag page that gets categoried under &#8220;<strong>WordPress&#8221;</strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>01</strong>- Open the file <strong>tag.php</strong></p>
<p><strong>02</strong>- <strong>Edit</strong></p>
<p><strong>03- </strong> Find the section that is similair to this</p>
<p><em>&lt;h1&gt;&lt;?php</em><br />
<em>printf( __( &#8216;Tag Archives: %s&#8217;, &#8216;twentyten&#8217; ), &#8216;&lt;span&gt;&#8217; . single_tag_title( &#8221;, false ) . &#8216;&lt;/span&gt;&#8217; );</em><br />
<em>?&gt;&lt;/h1&gt;</em></p>
<p><strong>04</strong>- Add this code right beneath it</p>
<p><!-- CODE added to DISPLAY  TAG descriptions --><em>&lt;!&#8211; CODE added to DISPLAY  TAG descriptions &#8211;&gt;</em><br />
<em>&lt;?php if (is_tag()) { ?&gt;&lt;?php echo tag_description(); ?&gt;&lt;?php } ?&gt;</em><br />
<em>&lt;!&#8211; end CODE added to DISPLAY  TAG descriptions &#8211;&gt;</em></p>
<p><strong>05</strong>- SAVE</p>
<p>___________________________________________</p>
<p><strong>NEXT STEPS</strong>:</p>
<p><strong>01</strong>- Go into your TAGS (in your dashboard located at)</p>
<p><strong>POSTS&#8211;&gt;POST TAGS</strong></p>
<p><strong>02</strong>- Do a search for the Tag that you want a description added and click <strong>EDIT</strong> to add it to the &#8220;description field&#8221;</p>
<p>I pasted in some HTML code like this:</p>
<p><em>&lt;p&gt;</em><br />
<em>&lt;strong&gt;2012 specific articles:&lt;/strong&gt;&lt;br /&gt;</em><br />
<em>Archive of 2012 related articles of interest&lt;br /&gt;</em><br />
<em>Check back as many more are added to this archive</em><br />
<em>&lt;p&gt;</em></p>
<p>That&#8217;s it &#8211; the tag page for this tag should now have a description</p>
<p>======================================================</p>
<p><strong>How to Get rid of TAG headers (found at top of TAG pages)</strong></p>
<p>If you don&#8217;t like that default header that appears on TAG pages, you can comment it out by the following method</p>
<p>Example:<br />
<em>&#8220;Tag Archives: found footage&#8221;</em></p>
<p>Comment this section out:</p>
<p><em>&lt;h1&gt;&lt;?php</em><br />
<em>printf( __( &#8216;Tag Archives: %s&#8217;, &#8216;twentyten&#8217; ), &#8216;&lt;span&gt;&#8217; . single_tag_title( &#8221;, false ) . &#8216;&lt;/span&gt;&#8217; );</em><br />
<em>?&gt;&lt;/h1&gt;</em></p>
<p>should look like this:</p>
<p><em>&lt;!&#8211; commenting out TAG page headers &#8211;&gt;</em><br />
<em>&lt;!&#8211;</em><br />
<em>&lt;h1&gt;&lt;?php</em><br />
<em>printf( __( &#8216;Tag Archives: %s&#8217;, &#8216;twentyten&#8217; ), &#8216;&lt;span&gt;&#8217; . single_tag_title( &#8221;, false ) . &#8216;&lt;/span&gt;&#8217; );</em><br />
<em>?&gt;&lt;/h1&gt;</em><br />
<em>&#8211;&gt;</em><br />
<em>&lt;!&#8211; END commenting out TAG headers &#8211;&gt;</em></p>
<p>Thats&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-how-to-add-descriptions-to-your-tags-on-your-tag-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Posts are Posting Twice (or more) Issue?</title>
		<link>http://www.simpleinbound.com/facebook-posts-are-posting-twice-or-more-issue/</link>
		<comments>http://www.simpleinbound.com/facebook-posts-are-posting-twice-or-more-issue/#comments</comments>
		<pubDate>Fri, 14 Sep 2012 00:20:30 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=238</guid>
		<description><![CDATA[This was a recent issue I dealt with that one hand might seem obvious, but actually took a big of digging to trouble shoot. If you have set up your blog or RSS feed to funnel into Facebook, you may &#8230; <a href="http://www.simpleinbound.com/facebook-posts-are-posting-twice-or-more-issue/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/facebook/"><img class="size-full wp-image-78 alignright" title="simpleinbound-facebook" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-facebook.png" alt="simpleinbound facebook Facebook Posts are Posting Twice (or more) Issue?" width="108" height="111" /></a>This was a recent issue I dealt with that one hand might seem obvious, but actually took a big of digging to trouble shoot.</p>
<p>If you have set up your blog or RSS feed to funnel into Facebook, you may have run into this once or twice. What we&#8217;re talking about is your RSS feed posts showing up in Facebook more than once upon posting. The reason might vary for how you setup your accounts but I thought it best to offer a few suggestions for you to troubleshoot.</p>
<p>Hopefully one of these will lead you in the right direction:</p>
<p><strong>1-</strong> Check your WordPress plugins, make sure there isn&#8217;t one that might be doubling up or sending out a post from your feed into Facebook. If one looks suspicious, you might try deactivating it until you can test this against your accounts.</p>
<p><strong>2-</strong> Are you using Facebook&#8217;s &#8220;<strong>RSS Graffiti</strong>&#8221; plugin? Check the settings to make sure you didn&#8217;t set up 2 channels by accident that post back to your Facebook page</p>
<p><strong>3-</strong> Lastly but not least (<em>and for the record the one I eventually tracked the issue down to</em>)<br />
Are you using <strong><a href="http://twitterfeed.com/">http://twitterfeed.com/</a></strong> to autopost your RSS feeds into Facebook?</p>
<p>Make sure you login and check your settings. <a href="http://twitterfeed.com/">http://twitterfeed.com/</a> allows you to autopost your RSS feed back into Facebook thru Twitterfeed. It&#8217;s a great solution, however it&#8217;s quite possible that 1 of 2 things occurred.<br />
1- you accidentally created the service twice (of which it will hit Facebook 2X on every post)<br />
2- you created 2 accounts (forgetting about the original you set up) which are also hitting Facebook 2x<span id="more-238"></span></p>
<p>In any case, if this is so, make sure and deactivate at least one them</p>
<p><strong>Some detective work:</strong><br />
Make sure you check your Facebook Apps to see if something sticks out that shouldn&#8217;t</p>
<p>A- Go to your personal profile<br />
B- Right top corner: <strong>HOME&#8211;&gt;ACCOUNT SETTINGS&#8211;APPS</strong><br />
C- Look thru the list of Apps being used</p>
<p>ALSO &#8211; remember that if you have multiple ADMINS (assigned to the problem page), one of the other ADMINS may have an APP or setting that is being funneled thru &#8220;their&#8221; account. You may have to log into their personal account, or have them do it to see if anything is setup on their end. For instance, if your personal account and their personal account are both using the &#8220;RSS Graffiti&#8221; plugin, then it may be triggering twice on the same Facebook Page.</p>
<p>Usually by trying all the above you can filter your way down into where the issue is occurring</p>
<p>Keywords:<br />
<strong>- Posts appear twice<br />
- Facebook posting more than once<br />
- Facebook RSS feed appears twice<br />
- Facebook RSS feed is doubling up</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/facebook-posts-are-posting-twice-or-more-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Dictionary</title>
		<link>http://www.simpleinbound.com/seo-dictionary/</link>
		<comments>http://www.simpleinbound.com/seo-dictionary/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 15:41:13 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Dictionary]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=239</guid>
		<description><![CDATA[Just a quick post to point out a cool little resource worth linking to. This came across my email today &#8211; A SEO Dictionary. It&#8217;s setup real easy to use and provides a quick resource for those new to the &#8230; <a href="http://www.simpleinbound.com/seo-dictionary/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/seo/"><img class="size-full wp-image-82 alignright" title="simpleinbound-seo" src="http://www.simpleinbound.com/wp-content/uploads/2011/05/simpleinbound-seo.png" alt="simpleinbound seo SEO Dictionary" width="108" height="111" /></a>Just a quick post to point out a cool little resource worth linking to. This came across my email today &#8211; <a href="http://www.submitexpress.com/seodictionary.html" target="_blank">A SEO Dictionary</a>. It&#8217;s setup real easy to use and provides a quick resource for those new to the field to reference terms used within the industry. Check it out! &#8211; that&#8217;s All</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/seo-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feeding your Twitter RSS Feed into Another Twitter account</title>
		<link>http://www.simpleinbound.com/feeding-your-twitter-rss-feed-into-another-twitter-account/</link>
		<comments>http://www.simpleinbound.com/feeding-your-twitter-rss-feed-into-another-twitter-account/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 00:01:43 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=237</guid>
		<description><![CDATA[First off you&#8217;re probably wondering why this is necessary? Why would you want to re-post your Twitter RSS to another Twitter account? Simple. Example: Say you have a music act that posts regular feeds from its Twitter account, and YOU &#8230; <a href="http://www.simpleinbound.com/feeding-your-twitter-rss-feed-into-another-twitter-account/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/twitter/"><img class="size-full wp-image-77 alignright" title="simpleinbound-twitter" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-twitter.png" alt="simpleinbound twitter Feeding your Twitter RSS Feed into Another Twitter account" width="108" height="111" /></a>First off you&#8217;re probably wondering why this is necessary? Why would you want to re-post your Twitter RSS to another Twitter account?</p>
<p>Simple.</p>
<p><strong>Example:</strong><br />
Say you have a music act that posts regular feeds from its Twitter account, and YOU want to repost them out of your own personal account. Theoretically this would give you 2 points of promotion, 1 thru the main Twitter account and 1 thru your own personal Twitter account.</p>
<p>Well this idea can be used for businesses in the same way with all sort of combinations.</p>
<p><strong>Example 2:</strong></p>
<p>Your personal account feeds in &#8220;common interest feeds&#8221; AND you&#8217;d like your business Tweets to come thru directly as well (thru your personal account that is)</p>
<p>OK so with that out of the way you have to solve a couple issues:<span id="more-237"></span></p>
<p>________________________________</p>
<p><strong>STEPS:</strong></p>
<p><strong>1- What is the RSS Feed from your Main account</strong> (music act account, business or other)</p>
<p>- replace the part of the feed that says &#8220;<em>addyourusernamehere</em>&#8221; with your Twitter user name</p>
<p><em>https://twitter.com/statuses/user_timeline/addyourusernamehere.rss</em></p>
<p><strong>Side Note:</strong><br />
You can get different Twitter <a href="http://www.labnol.org/internet/rss-feeds-directory/21242/" target="_blank">feed suggestions from this page</a></p>
<p><strong>2- How do I feed my Twitter feed back into Twitter?</strong></p>
<p>Good question, that&#8217;s pretty easy&#8230;&#8230; however you may run into an issue with your Twitter feed (used in step #1)</p>
<p>Let me explain:</p>
<p>A) First you would need create an account on <a href="http://twitterfeed.com" target="_blank">Twitterfeed.com</a><br />
<em>(this allows you to import feeds from other sources and send them back into your Twitter account)</em></p>
<p>B) Using <strong>Twitterfeed</strong>, you can have multiple RSS feeds coming into one source and outputting directy back into Twitter&#8230;cool eh?</p>
<p>C) Problem, <strong>Twitterfeed</strong> will give you an error if you try and use a &#8220;<em>Twitter RSS Feed</em>&#8221; as a source (such as the one posted in Step #1)</p>
<p>in fact the exact message is <em>&#8220;&#8221;twitter does not allow posting of twitter feeds back to twitter&#8221;</em></p>
<p><strong>D) How to solve this?</strong><br />
Well, what I had to do is create a working version of the feed, one that was converted and then re-processed (so to speak)<br />
I found a solution by going to <a href="http://www.feedkiller.com/">http://www.feedkiller.com/</a> and entering in the Twitter RSS feed (from step #1) into the &#8220;mix field&#8221; (note you may HAVE to have a least 2 feeds for this to work, though the 2nd could be a dead feed or some feed that never updates)</p>
<p>The result will give you a new working feed <strong>THAT YOU CAN use!</strong></p>
<p>E) Now go back to Twitterfeed and enter in this new RSS feed<br />
<em>(when adding this make sure and select &#8220;advanced and select &#8220;Post new items based on GUID&#8217;)</em></p>
<p>Final note &#8211; if <a href="http://www.feedkiller.com/">http://www.feedkiller.com/</a> at some point is no longer working, you&#8217;ll need to find another way to convert your Twitter feed such as <a href="http://www.rssmix.com/">http://www.rssmix.com/</a> or such.</p>
<p>THATS IT &#8211; using the steps detailed above you should be able to import a Twitter Feed dirrectly into another Twitter account</p>
<p>(Note: I didn&#8217;t test it, but you may be able to run the feed thru <strong>Yahoo Pipes</strong> as well to re-process it)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/feeding-your-twitter-rss-feed-into-another-twitter-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How to get Rid of theme_credit()</title>
		<link>http://www.simpleinbound.com/wordpress-how-to-get-rid-of-theme_credit/</link>
		<comments>http://www.simpleinbound.com/wordpress-how-to-get-rid-of-theme_credit/#comments</comments>
		<pubDate>Fri, 31 Aug 2012 23:39:16 +0000</pubDate>
		<dc:creator>Michael Bohatch - SimpleInbound</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[footer theme credit]]></category>
		<category><![CDATA[theme credit]]></category>
		<category><![CDATA[theme_credit()]]></category>

		<guid isPermaLink="false">http://www.simpleinbound.com/?p=235</guid>
		<description><![CDATA[How to get rid of footer credit (or theme credit  theme_credit()?) at the bottom of a WordPress blog? How to delete WordPress Blog credit at bottom? Usally it is found in the &#8220;footer.php&#8221; file, but when deleted it can cause &#8230; <a href="http://www.simpleinbound.com/wordpress-how-to-get-rid-of-theme_credit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.simpleinbound.com/category/wordpress/"><img class="size-full wp-image-79 alignright" title="simpleinbound-WP" src="http://www.simpleinbound.com/wp-content/uploads/2011/06/simpleinbound-WP.png" alt="simpleinbound WP Wordpress: How to get Rid of theme credit()" width="108" height="111" /></a><br />
<strong>How to get rid of footer credit (or theme credit  theme_credit()?) at the bottom of a WordPress blog?<br />
<strong>How to delete WordPress Blog credit at bottom?</strong></strong></p>
<p>Usally it is found in the &#8220;<strong>footer.php</strong>&#8221; file, but when deleted it can cause your blog theme to mess up.<br />
A simple solution is just &#8220;comment&#8221; it out. This should keep it from showing without deleting the theme code. Notice the &lt;!&#8211; character added twice</p>
<p><strong>(Example)</strong><br />
<strong>Before</strong></p>
<p><em>  &amp;copy; </em><br />
<em>                &lt;?php echo date(&#8220;Y&#8221;);?&gt; &#8211; &lt;?php bloginfo(&#8216;name&#8217;); ?&gt; is proudly powered by &lt;a href=&#8221;http://wordpress.org/&#8221;&gt;WordPress&lt;/a&gt;&lt;br/&gt;</em></p>
<p><em>  &lt;?php /*Please leave 1 credit line to the theme designer. Thanks.*/ theme_credit();?&gt;<span id="more-235"></span></em></p>
<p><strong>After:</strong></p>
<p><em>  &lt;!&#8211;&amp;copy; </em><br />
<em>                &lt;?php echo date(&#8220;Y&#8221;);?&gt; &#8211; &lt;?php bloginfo(&#8216;name&#8217;); ?&gt; is proudly powered by &lt;a href=&#8221;http://wordpress.org/&#8221;&gt;WordPress&lt;/a&gt;&lt;br/&gt;&#8211;&gt;</em></p>
<p><em>  &lt;!&#8211;&lt;?php /*Please leave 1 credit line to the theme designer. Thanks.*/ theme_credit();?&gt;&#8211;&gt;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simpleinbound.com/wordpress-how-to-get-rid-of-theme_credit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
