<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Marketer Matt</title>
	
	<link>http://marketermatt.com</link>
	<description>I'm Pretty Much King of the Internet...</description>
	<lastBuildDate>Thu, 02 Feb 2012 02:39:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MarketerMatt" /><feedburner:info uri="marketermatt" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Display Custom Post Type Taxonomy Terms Without the Links</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/6ngVPSUMqZs/</link>
		<comments>http://marketermatt.com/display-custom-post-type-taxonomy-terms-without-the-links/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 02:38:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[taxonomies]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=226</guid>
		<description><![CDATA[I&#8217;ve been modifying a theme I bought awhile ago, adding in a custom post type and corresponding taxonomies. I thought it&#8217;d be a cool idea to display an image representing one of my taxonomies instead of just the text or a link to the category. So after trying just about every wp function having to do with getting terms, I finally found my answer and decided to share it so you won&#8217;t have to spend the hours I did figuring this out. I found this on CSS Tricks which continually proves to be a great source for finding answers to<a href="http://marketermatt.com/display-custom-post-type-taxonomy-terms-without-the-links/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been modifying a theme I bought awhile ago, adding in a custom post type and corresponding taxonomies. I thought it&#8217;d be a cool idea to display an image representing one of my taxonomies instead of just the text or a link to the category. So after trying just about every wp function having to do with getting terms, I finally found my answer and decided to share it so you won&#8217;t have to spend the hours I did figuring this out.</p>
<p>I found this on <a title="Wordpress Taxonomy Tags Not as Links" href="http://css-tricks.com/forums/discussion/11225/display-wordpress-custom-taxonomy-tags-but-not-as-links/p1" target="_blank">CSS Tricks</a> which continually proves to be a great source for finding answers to my problems.</p>
<p>So here&#8217;s the a generic version of the code I used:</p>
<pre style="
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 background:#ffffff;
 word-wrap: break-word;
 ">&lt;?php $terms_as_text = get_the_term_list( $post-&gt;ID,'my_taxonomy'); if (!empty($terms_as_text)) $check_img = strip_tags($terms_as_text); ?&gt;
        &lt;a href="&lt;?php echo get_post_meta($post-&gt;ID, 'link_from_custom_field', true); ?&gt;"&gt;            
            &lt;?php if($check_img == 'Matches Term 1') { ;?&gt;
                &lt;img src="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/img_of_term1.jpg" alt="&lt;?php echo $check_img; ?&gt;" title="&lt;?php echo $check_img; ?&gt;" /&gt;
            &lt;?php } elseif ($check_img == 'Matches Term 2') { ;?&gt;
                &lt;img src="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/img_of_term2.jpg" alt="&lt;?php echo $check_img; ?&gt;" title="&lt;?php echo $check_img; ?&gt;" /&gt;
            &lt;?php } elseif ($check_img == 'Matches Term 3') { ;?&gt;
                &lt;img src="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/img_of_term3.jpg" alt="&lt;?php echo $check_img; ?&gt;" title="&lt;?php echo $check_img; ?&gt;" /&gt;
            &lt;?php } ?&gt;
        &lt;/a&gt;</pre>
<p>get_the_term_list(); gets the taxonomy terms from my current post ($post-&gt;ID) and from a selected taxonomy (&#8216;my_taxonomy&#8217;). After checking to make sure the taxonomy isn&#8217;t empty, it strips it of the anchor. Because I wanted to display a different image based on which taxonomy term was being used, I set the stripped taxonomy term to $check_img and then checked it against each of three different terms in order to display the appropriate image.</p>
<p>Also, here&#8217;s a reference that I made that helps explains the difference between the various term-related functions:</p>
<h3>get_terms vs the_terms vs get_the_terms etc.</h3>
<p><a title="get_terms Codex" href="http://codex.wordpress.org/Function_Reference/get_terms" target="_blank">get_terms()</a>; &#8212; Retrieve the terms in taxonomy or list of taxonomies.</p>
<p><code>&lt;?php get_terms( $taxonomies, $args ) ?&gt;</code></p>
<p><a title="get_term_link Codex" href="http://codex.wordpress.org/Function_Reference/get_term_link" target="_blank">get_term_link()</a>; &#8212; Returns permalink for a taxonomy term archive.</p>
<p><code>&lt;?php get_term_link( $term, $taxonomy ); ?&gt; </code></p>
<p><a title="get_the_terms Codex" href="http://codex.wordpress.org/Function_Reference/get_the_terms" target="_blank">get_the_terms</a>(); &#8212; Retrieve the terms of the taxonomy that are attached to the post.</p>
<p><code> &lt;?php get_the_terms( $id, $taxonomy ); ?&gt;<br />
</code></p>
<p><a title="get_the_term_list Codex" href="http://codex.wordpress.org/Function_Reference/get_the_term_list" target="_blank">get_the_term_list()</a>; &#8212; Returns an HTML string of taxonomy terms associated with a post and given taxonomy. Terms are linked to their respective term listing pages.</p>
<p><code> &lt;?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?&gt; </code></p>
<p><a title="the_terms Codex" href="http://codex.wordpress.org/Function_Reference/the_terms" target="_blank">the_terms()</a>; &#8212; Displays the terms of a custom taxonomy.</p>
<p><code> &lt;?php the_terms( $id, $taxonomy, $before, $sep, $after ); ?&gt;<br />
</code></p>
<p><a title="wp_get_object_terms Codex" href="http://codex.wordpress.org/Function_Reference/wp_get_object_terms" target="_blank">wp_get_object_terms()</a>; &#8212; Retrieves the terms associated with the given object(s), in the supplied taxonomies.</p>
<p><code>&lt;?php wp_get_object_terms( $object_ids, $taxonomies, $args ) ?&gt;</code></p>
<p>And there are a ton more, but those are the ones I kept referencing, so hopefully that will be a help to you as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/display-custom-post-type-taxonomy-terms-without-the-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/display-custom-post-type-taxonomy-terms-without-the-links/</feedburner:origLink></item>
		<item>
		<title>Learning to Code for the Web – Week 1</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/kDFuK7NG2tE/</link>
		<comments>http://marketermatt.com/learning-to-code-for-the-web-week-1/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 18:09:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[net tuts]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=219</guid>
		<description><![CDATA[Starting Out Coding People often start things and don&#8217;t finish them. As King Solomon said, &#8220;The end of a matter is better than its beginning&#8221; (Ecc 7:8). But nevertheless, I&#8217;m starting something today. I&#8217;m starting to learn the skill of developing websites. While I have a basic knowledge of HTML and CSS, I&#8217;ll need to master them both and especially master the new web standards of HTML5 and CSS3. I&#8217;ve found a host of videos available on NetTuts.com already, and I&#8217;ll be posting my progress as well as what I learn here on the blog so anyone that wants to<a href="http://marketermatt.com/learning-to-code-for-the-web-week-1/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<h3>Starting Out Coding</h3>
<p>People often start things and don&#8217;t finish them. As King Solomon said, &#8220;The end of a matter is better than its beginning&#8221; (Ecc 7:8). But nevertheless, I&#8217;m starting something today. I&#8217;m starting to learn the skill of developing websites. While I have a basic knowledge of HTML and CSS, I&#8217;ll need to master them both and especially master the new web standards of HTML5 and CSS3.</p>
<p>I&#8217;ve found a host of videos available on <a title="Tutorials" href="http://nettuts.com/" target="_blank">NetTuts.com</a> already, and I&#8217;ll be posting my progress as well as what I learn here on the blog so anyone that wants to can keep up. Instead of daily posts, which I&#8217;ve attempted before, I&#8217;m going to attempt to post every week in attempt to solidify what I&#8217;m learning through regurgitation and in case anyone else wants to learn the same things.</p>
<p>I&#8217;m starting with this set of videos: <a title="Learn PHP" href="http://blog.themeforest.net/screencasts/diving-into-php-video-series/" target="_blank">Diving into PHP Video Series</a> since in working with <a title="Wordpress" href="http://wordpress.org/" target="_blank">WordPress</a>, I need to have a solid grasp on PHP and since I know enough HTML and CSS that I won&#8217;t get lost. For anyone who doesn&#8217;t yet know HTML or CSS but would like to learn, TutsPlus is <a title="Learn CSS and HTML" href="http://tutsplus.com/course/30-days-to-learn-html-and-css/" target="_blank">has a free course that you can watch/download</a> right now to learn the basics.</p>
<h3>Goals for Learning Coding</h3>
<p>Overall though, my goal for the year is to have launched a handful of sites like <a title="ThereIsAPluginForThat.com" href="http://ThereIsAPluginForThat.com" target="_blank">ThereIsAPluginForThat.com</a> and to have coded at least 3 of my own themes including a theme for churches that I can give away to churches who don&#8217;t have a site, a theme for internet marketers that makes it simple to create splash pages, membership sites, etc., and an app theme that&#8217;s as elegant and functional as the ones from <a title="AppThemes" href="http://www.appthemes.com/" target="_blank">AppThemes.com</a>.</p>
<p>I want to have a solid handle on HTML, CSS, PHP, JavaScript, and how these languages function inside and throughout WordPress specifically. I want to be able to create themes, add widgets, create plugins, and maybe even try my hand at some type of multi-site installation. Coding is a great skill to learn and looks as if it will be around for quite some time. Plus, I love it. I&#8217;d probably just do it for a hobby even if I wasn&#8217;t using it to pay the bills.</p>
<p>So with that, here we go. My goal for this week is to get through the PHP video series and then to probably purchase a premium subscription from TutsPlus and get through either one of their books or at least one set of tutorials.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/learning-to-code-for-the-web-week-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/learning-to-code-for-the-web-week-1/</feedburner:origLink></item>
		<item>
		<title>Keeping it Simple in 2012</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/a3xmkGZ9WW0/</link>
		<comments>http://marketermatt.com/keeping-it-simple/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 21:09:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketer Matt's Musings]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[connect orange]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[Scepter Marketing]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=211</guid>
		<description><![CDATA[While I wrote about this from a business perspective on my company blog, I felt like expanding on this here as well as updating my readers on what&#8217;s going on with me in 2012, where I&#8217;m headed in life and in business, and what they can expect from this blog going forward. Generally, I plan about a million things for myself to get accomplished for my New Year&#8217;s resolutions. I write out every book I want to read, other self-improvement tasks such as learning languages, attending seminars or trainings, vacations I want to take, the amount of money I&#8217;d like<a href="http://marketermatt.com/keeping-it-simple/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>While I wrote about this from a business perspective <a title="Keeping it Simple with a Simple Marketing Plan" href="http://sceptermarketing.com/our-marketing-plan-for-the-new-year-2012-feel-free-to-copy/">on my company blog</a>, I felt like expanding on this here as well as updating my readers on what&#8217;s going on with me in 2012, where I&#8217;m headed in life and in business, and what they can expect from this blog going forward.</p>
<p>Generally, I plan about a million things for myself to get accomplished for my New Year&#8217;s resolutions. I write out every book I want to read, other self-improvement tasks such as learning languages, attending seminars or trainings, vacations I want to take, the amount of money I&#8217;d like to make and how I&#8217;d like to make it. But this year, I&#8217;m taking a different approach. I&#8217;m keeping things simple. Here is my simple, short list of resolutions for the New Year.</p>
<h3>Resolutions</h3>
<ul>
<li>Abide in God &#8211; I&#8217;ve learned a lot over the last few years about doctrine and the law of God. This year as I continue to study, I want to also put an emphasis on getting to know God on a more personal level in the day to day moments of life.</li>
<li>Esse Quam Videri &#8211; To be, rather than to appear to be. I want to be myself&#8230; all the time. I&#8217;ve grown much stronger in recent years, but there are still times when I get caught up in thinking about how I should act or could act to the neglect of the situation itself. I want to continue to work on this in 2012.</li>
<li>Disciplined Work &#8211; God is good, and business is going well (as I&#8217;ll get to in a moment). This is no time to pull back or to cease being diligent. On the contrary, I need to persist in the disciplined attitude I&#8217;ve had in starting the year. I have a few big projects that I&#8217;m working and, God willing, if I am diligent and patient the projects will pay off.</li>
<li>Keep Things Simple &#8211; Love God and obey His commands, work hard, be yourself, and enjoy life.</li>
</ul>
<p>For me this is a short list. And in the spirit of keeping things simple, I&#8217;ll be brief in this next section:</p>
<h3>What I Expect in 2012:</h3>
<p>I have a couple of projects that I&#8217;m working on which are growing more and more exciting. One of them is <a title="Connect Orange" href="http://connectorange.com/" target="_blank">ConnectOrange.com</a> which is still in Beta but is live and may very well be the best looking site in Lansing thanks our lead graphic designer <a title="Eric McClain Art" href="http://http://emcclainart.com/" target="_blank">Eric</a>. I&#8217;m working on a few more features that will hopefully be rolled out by the end of February at the latest. There is much more to tell with the network of other Lansing-based sites that I plan on rolling out, but it&#8217;s too much for this post. I&#8217;ll probably be doing a press release and another post on ConnectOrange as things progress.</p>
<p>I&#8217;m also fortunate to have the opportunity with working with some friends on other projects as well including selling some stuff on Amazon, a website exclusively for car dealers, and a magazine. In addition to these projects, I have simplified the offerings of my company to include only things that 1) we are good at and 2) that I enjoy doing. We are removing many of our marketing services and transitioning to use ConnectOrange and the rest of our Lansing-based network of sites as our primary marketing offerings rather than link building and social media. This will definitely be a win-win for everyone!</p>
<p>Outside of business, things are looking promising as well. I&#8217;ve been thinking and praying about where I can get more involved with a church community around town and a few options have presented themselves. I&#8217;m excited about these possibilities as well even though I&#8217;m not entirely sure what I&#8217;ll be doing yet. I know that I want to work towards building a genuine community of Christians who work together to solve community problems. I have a few ideas, but for now I&#8217;m in a holding pattern as I explore the options before me.</p>
<p>Lastly, I should mention that I&#8217;m changing up the course of this blog. I&#8217;m taking a more simple approach to it as well. I&#8217;m just going to write about all the things that are me. The name will still be MarketerMatt.com, but it will come to be a place where my voice can be heard on a multitude of issues, not just marketing. I&#8217;ve been considering jumping back into writing about Church related issues, theology, and politics among other things. So while this blog has been aimed at mostly marketing related topics, you can expect a shift as I subject you to whatever thoughts are rolling around in my head as the year goes on.</p>
<p>So with that, I wish you a great 2012, and I&#8217;ll catch you on the flipside.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/keeping-it-simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/keeping-it-simple/</feedburner:origLink></item>
		<item>
		<title>Affiliate Marketing VS Network Marketing</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/N1_trIXn9F8/</link>
		<comments>http://marketermatt.com/affiliate-marketing-vs-network-marketing/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 18:14:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketer Matt's Musings]]></category>
		<category><![CDATA[Multi-level Marketing]]></category>
		<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[network marketing]]></category>
		<category><![CDATA[tiered affiliate systems]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=187</guid>
		<description><![CDATA[It&#8217;s funny to me how mainstream affiliate marketing is becoming while network marketing is still so often despised. It is really very ironic, especially when you consider that there are now many two and three tier affiliate programs. So here&#8217;s my question&#8230; Why in the world haven&#8217;t more internet marketers gone into the network marketing arena?!? Seriously though, think about this for a second. Affiliate marketers are already doing the same thing as network marketers, only they are almost exclusively focused on online marketing whereas most network marketers are still stuck in traditional word-of-mouth advertising. Affiliate marketers therefore actually have a<a href="http://marketermatt.com/affiliate-marketing-vs-network-marketing/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s funny to me how mainstream affiliate marketing is becoming while <a title="The Sponsoring System - Network Marketing Training" href="http://thesponsoringsystem.com/" target="_blank">network marketing</a> is still so often despised. It is really very ironic, especially when you consider that there are now many two and three tier affiliate programs.</p>
<p>So here&#8217;s my question&#8230;</p>
<p>Why in the world haven&#8217;t more internet marketers gone into the network marketing arena?!? Seriously though, think about this for a second.</p>
<p>Affiliate marketers are <em>already</em> doing the same thing as network marketers, only they are almost exclusively focused on online marketing whereas most network marketers are still stuck in traditional word-of-mouth advertising. Affiliate marketers therefore actually have a huge advantage!</p>
<p>Even if they only sold a<a title="BSkinny Coffee" href="http://skinny-coffee.biz/" target="_blank"> network marketing product like this one</a>, they could probably do fine. And then what happens when they get a few other affiliate marketers to do the same thing underneath them? Wouldn&#8217;t they increase their income drastically? Why would any affiliate marketer NOT go for something like that?</p>
<p>The only reasons I can think of are 1) They don&#8217;t know how effective or profitable network marketing companies can be, 2) They have the same feelings about network marketing companies as the rest of Americans, or 3) They can&#8217;t see beyond doing what they&#8217;ve always done.</p>
<p>In my opinion, internet marketers could absolutely CRUSH IT when it comes to network marketing companies because of the skills they already posses. I just wonder why they don&#8217;t use them in that arena.</p>
<p>But whatever. I guess it just leaves more market share for people like me <img src='http://marketermatt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Article by <a title="King of the Internet" href="http://marketermatt.com/">Marketer Matt &#8211; King of the internet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/affiliate-marketing-vs-network-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/affiliate-marketing-vs-network-marketing/</feedburner:origLink></item>
		<item>
		<title>Learning WordPress</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/C0NAB55FEAQ/</link>
		<comments>http://marketermatt.com/learning-wordpress/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 20:36:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=179</guid>
		<description><![CDATA[Over the last year or so I have set up quite a few websites using WordPress. It&#8217;s easy to use, easy to set up, and has such a huge open source community that I&#8217;ve found that I can solve almost any problem using free themes and free plugins. In the rare cases that I need something more in a website than I can hack together on my own in WP, I buy a custom theme for $100 bucks or less. As successful as I have been with this method, I do not have quite enough control as I would like.<a href="http://marketermatt.com/learning-wordpress/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://marketermatt.com/wp-content/uploads/Wordpress-logo.png"><img class="alignleft size-medium wp-image-182" title="Wordpress-logo" src="http://marketermatt.com/wp-content/uploads/Wordpress-logo-300x67.png" alt="" width="300" height="67" /></a>Over the last year or so I have set up quite a few websites using WordPress. It&#8217;s easy to use, easy to set up, and has such a huge open source community that I&#8217;ve found that I can solve almost any problem using free themes and free plugins. In the rare cases that I need something more in a website than I can hack together on my own in WP, I buy a custom theme for $100 bucks or less.</p>
<p>As successful as I have been with this method, I do not have quite enough control as I would like. I have started to learn how to add simple functionality such as additional page templates for my themes, additional style sheets that can be selected from a theme options page, and stuff like that. And now I&#8217;m diving all the way in!</p>
<p>Over the last couple of weeks I&#8217;ve started learning PHP and have already put together my very own theme from scratch with the help of <a title="WP tutorials" href="http://webdesign14.com/creating-a-wordpress-themes-tutorial-roundup/">some of these tutorials</a>. I also managed to <a title="Create Theme Options Panel" href="http://wpshout.com/create-an-advanced-options-page-in-wordpress/">add a Theme Options page to a theme following this tutorial</a>. So needless to say, I&#8217;m pretty excited. Learning WordPress will help me with marketing, give me a new source of income, and give me more stuff to blog about <img src='http://marketermatt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And it just so happens that the TUTS PLUS network just launched <a title="WP Tuts Plus" href="http://wp.tutsplus.com/" target="_blank">WP TUTS</a> in the last few weeks. I think they did it<a title="King of the Internet" href="http://marketermatt.com/"> just for me</a> <img src='http://marketermatt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Especially because the first tutorial they are starting is <a title="Developing WP Themes from Scratch" href="http://wp.tutsplus.com/tutorials/theme-development/developing-your-first-wordpress-theme-day-2-of-3/" target="_blank">how to develop your own wordpress theme</a>.</p>
<p>So here I go.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/learning-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://marketermatt.com/learning-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to get Organized…</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/DHqfAy_dazQ/</link>
		<comments>http://marketermatt.com/getting-organized/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 19:47:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[atmosphere]]></category>
		<category><![CDATA[chilled coffee]]></category>
		<category><![CDATA[organization]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=163</guid>
		<description><![CDATA[I&#8217;ve been realizing that my work atmosphere sucks. I used to think it was a sweet think to be able to work from home, but what I have found is that when you work from home, you never leave the office. This can make it hard to compartmentalize my day because I eat, sleep, poop, market, and brainstorm billion dollar ideas all from the same place. So what&#8217;s the solution? Well, eventually I&#8217;ll probably get an office, but for now, I just need to organize my stuff&#8230; as should be evident by these photos &#160; As you can see, it&#8217;s<a href="http://marketermatt.com/getting-organized/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been realizing that my work atmosphere sucks. I used to think it was a sweet think to be able to work from home, but what I have found is that when you work from home, you never leave the office. This can make it hard to compartmentalize my day because I eat, sleep, poop, market, and brainstorm billion dollar ideas all from the same place.</p>
<p>So what&#8217;s the solution? Well, eventually I&#8217;ll probably get an office, but for now, I just need to organize my stuff&#8230; as should be evident by these photos</p>
<div><img class="size-medium wp-image-165 alignnone" title="Dirty Office" src="http://marketermatt.com/wp-content/uploads/Dirty-Room1-300x179.jpg" alt="" width="300" height="179" /></div>
<div><img class="size-medium wp-image-166 alignnone" title="Dirty Office 2" src="http://marketermatt.com/wp-content/uploads/Dirty-Room2-300x179.jpg" alt="" width="300" height="179" /></div>
<p>&nbsp;</p>
<p>As you can see, it&#8217;s about time to organize my office again. Here are the steps that I usually take to get myself organized. It makes work flow smoother and I&#8217;m sure it&#8217;ll help you too. Feel free to suggest more.</p>
<ol>
<li>Clean everything you can off your desk and dust it!! don&#8217;t want to be breathing in dust bunnies while you&#8217;re trying to work!</li>
<li>Get the recycle bin, trash can, and a few file folders</li>
<li>Turn on GrooveShark and start going through the pile o&#8217; crap and either recycle / trash it, file it away, or put it in another pile which is your &#8220;to do&#8221; pile</li>
<li>When you&#8217;re done, take a break to reward yourself and get a chilled coffee</li>
<li>Come back and enjoy your new, clean work environment!</li>
</ol>
<p>Now it&#8217;s my turn</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/getting-organized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/getting-organized/</feedburner:origLink></item>
		<item>
		<title>Skinny Coffee</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/Uvp2JF_-gK4/</link>
		<comments>http://marketermatt.com/skinny-coffee/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 17:35:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Multi-level Marketing]]></category>
		<category><![CDATA[Boresha]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=158</guid>
		<description><![CDATA[Sometimes when you stumble across an idea, you just know that you&#8217;ve struck gold. I think &#8220;skinny coffee&#8221; is one of these ideas. A fairly new company called Boresha International has created the only fat burning coffee on the market. Yes, you heard that right, FAT BURNING COFFEE. Sounds too good to be true right? Years of research and 11 FDA approved claims say that this coffee the real McCoy. Everyone knows coffee is a HUGE industry. Even if you don&#8217;t drink coffee, you can&#8217;t help but notice there is a Starbucks or other coffee shop on practically every street<a href="http://marketermatt.com/skinny-coffee/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes when you stumble across an idea, you just <em>know</em> that you&#8217;ve struck gold. I think &#8220;skinny coffee&#8221; is one of these ideas. A fairly new company called Boresha International has created the only <em>fat burning coffee</em> on the market. Yes, you heard that right, FAT BURNING COFFEE. Sounds too good to be true right? Years of research and 11 FDA approved claims say that this coffee the real McCoy.</p>
<p>Everyone knows coffee is a HUGE industry. Even if you don&#8217;t drink coffee, you can&#8217;t help but notice there is a Starbucks or other coffee shop on practically every street corner these days. Aside from the projections of it quickly becoming a 100 billion dollar  industry (currently it&#8217;s around 70), coffee is the most widely traded  commodity after oil.</p>
<p>So if you add these facts to the idea of a coffee that doesn&#8217;t make you store fat (which traditional coffee does) but instead actually helps burn fat, than you get a pretty darn good business idea. Who wouldn&#8217;t want to loose weight drinking stuff they are already drinking everyday anyway? Oh, and by the way, an average of over 1 billion cups of coffee are served daily worldwide.</p>
<p>So why the heck do I care about Boresha and their skinny coffee? Because Boresha is a <a title="Skinny Coffee MLM" href="http://skinny-coffee.biz/" target="_blank">coffee based MLM</a>. This essentially means that I can become an affiliate for Boresha and not only get paid to sell their coffee, but I can get paid on the sales of other affiliates that I get to sign up under me. It&#8217;s basically affiliate marketing on steroids!</p>
<p>There are some affiliate plans that are &#8220;two tier&#8221; or even &#8220;three tier&#8221; systems where they allow you go get paid based on the commissions of other affiliates you sign up. Boresha, being a network marketing company, essentially allows you to get paid on as many affiliates as you (and they) can sign up!</p>
<p>So again, take a product that everyone already uses (coffee) and make it health conscious (skinny coffee) and then give me and other marketers the ability to sign up hundreds of other affiliates that can all sell this coffee. And what do you get? Give it three to five years and you&#8217;ll probably have a billion dollar company. The only question left is &#8220;how much of the money pie to do you want?&#8221; With less than 24,000 affiliates in the system, there is so much room for growth that it&#8217;s not even funny.</p>
<p>Yes, I&#8217;m excited about Boresha, and yes, I&#8217;ve already signed up as an affiliate, and yes, I&#8217;m pretty much the only internet marketer who knows about this opportunity right now, and yes, I&#8217;m going to dominate. If you want to join me follow the link below and check us out:</p>
<p><a href="http://skinny-coffee.biz/" target="_blank">Boresha</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/skinny-coffee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/skinny-coffee/</feedburner:origLink></item>
		<item>
		<title>Marketing for Advid Nation – How to Market a Social Network</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/wWNg7dkkgWg/</link>
		<comments>http://marketermatt.com/marketing-for-advid-nation/#comments</comments>
		<pubDate>Tue, 31 May 2011 00:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[advid nation]]></category>
		<category><![CDATA[Perry Belcher]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[social network]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=143</guid>
		<description><![CDATA[In my last post I wrote about how I was changing up some of the things that I&#8217;ve been doing. In addition to going into full-time internet marketing, I&#8217;ve also picked up two fairly large internet projects. One of them is called Advid Nation for which I will be doing a hefty amount of internet marketing. The company, started last year (2010) by a good friend of mine named Jeremy Jones, is a video based social media website like YouTube, but which pays users for their content. I&#8217;m excited about the idea, because I think it has a lot of<a href="http://marketermatt.com/marketing-for-advid-nation/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>In my last post I wrote about how I was changing up some of the things that I&#8217;ve been doing. In addition to going into full-time internet marketing, I&#8217;ve also picked up two fairly large internet projects. One of them is called <a href="http://advidnation.com/">Advid Nation </a>for which I will be doing a hefty amount of internet marketing.</p>
<p>The company, started last year (2010) by a good friend of mine named Jeremy Jones, is a video based social media website like YouTube, but which pays users for their content. I&#8217;m excited about the idea, because I think it has a lot of merit. Having known Jones for a long time, we met up last week to talk about me coming on board to help with the marketing side of things, since, after all, that is my expertise <img src='http://marketermatt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I will admit though, marketing a social network is a different animal entirely than marketing small businesses which is what my company focuses on. It is even different than marketing a normal website where SEO is can usually make a huge difference. I&#8217;m having to rack my brain and go back to the drawing board in order to come up with ideas that will help make this site go viral rather than to the top Google. But of course, like any good entrepreneur, I&#8217;m up for the challenge!</p>
<p>So how <em>do</em> you market a social network? Here are my thoughts as I begin to dive into this project. (Of course I can&#8217;t go into great depth because of contracts and of conflict of interest, but for my internet marketing comrades out there, I wanted to give a brief outline that might be helpful.)</p>
<ul>
<li>Twitter &#8211; In my mind, Twitter is by far the fastest way of communicating with the world outside of commandeering control of every major news nation simultaneously. This makes it a vital part of my strategy when it comes to promoting another social network since people need to find out about it, and quickly. Several months ago I was privileged to watch a webinar from StomperNet featuring Perry Belcher on social media. The guy had something like 100,000 followers within six months and was one of the most influential tweeters at the time before he bowed out of the scene. I plan to put his tactics to use here.</li>
<li>Market Leaders &#8211; Though I didn&#8217;t read the whole book, I think this was the idea behind <em>The Purple Cow</em>. Basically, the idea is this, finding and convincing leaders is generally easier than convincing the masses. Convert the leaders and let them do the work for you. Of course, this tactic will likely take some time, but I think it&#8217;ll be highly effective if carried out. Social networks like Facebook will be key in getting in touch with these leaders.</li>
<li>SEO &#8211; Even though the nature of the website almost makes SEO irrelevant, I&#8217;ve found a handful of keywords that may help to jump the traffic. The idea here is to help people solve problems through the use of the website. For example, internet marketers like myself want more exposure for our companies and Advid is another place to get that exposure both by videos and through buying targeted ads. So the goal here would be to create content around solving people&#8217;s issues and then to use the linking structure of the ever growing site to direct &#8220;link juice&#8221; the appropriate pages in order to get them ranked. Right now I&#8217;m trying to find the problems or issues that people are having that are most related to YouTube or other video providers. Figured that&#8217;d be a good place to start.</li>
<li>Email Marketing &#8211; Hopefully, I&#8217;ll apply the traditional no-brainer email marketing tactics as well. I&#8217;m toying with a few ideas: Video of the Day, Top # List, Admin Favorites, etc. &#8211; And of course forwarding and social media share buttons are a must! Not too much flashy stuff here but just the stuff that has proven to work over and over again.</li>
</ul>
<p>So there are some of the ideas that I have here as I&#8217;m just getting started on this project. Let me know what you think good or bad. Anything you would do differently?</p>
<p>For Technorati : ) YAKSCCBBPDR7</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/marketing-for-advid-nation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://marketermatt.com/marketing-for-advid-nation/</feedburner:origLink></item>
		<item>
		<title>Change</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/fB1ritUuzKs/</link>
		<comments>http://marketermatt.com/change/#comments</comments>
		<pubDate>Thu, 26 May 2011 01:14:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketer Matt's Musings]]></category>
		<category><![CDATA[collapsing economy]]></category>
		<category><![CDATA[motivation]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=139</guid>
		<description><![CDATA[I watched some videos today from a friend of mine that were talking about how the economy is collapsing all around us. Apparently, the US dollar backs most of the world&#8217;s currencies and oil must be purchased in US dollars rather than any other currency. Apparently, this is the only thing that is keeping the dollar from becoming worthless as the Fed pumps more and more dollars into the system. Supposedly they are planning to pour up to 11 trillion additional dollars into the economy, thinking that that will save it&#8230; which it won&#8217;t. So what does that have to<a href="http://marketermatt.com/change/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>I watched some videos today from a friend of mine that were talking about how the economy is collapsing all around us. Apparently, the US dollar backs most of the world&#8217;s currencies and oil must be purchased in US dollars rather than any other currency. Apparently, this is the only thing that is keeping the dollar from becoming worthless as the Fed pumps more and more dollars into the system. Supposedly they are planning to pour up to 11 trillion additional dollars into the economy, thinking that that will save it&#8230; which it won&#8217;t.</p>
<p>So what does that have to do with marketing? Well, the videos gave me some extra motivation to get things rolling faster. I have several projects that I started back in January which have more or less fallen to the wayside because of a bigger project that I was working on. Unfortunately, as it sometimes happens to projects, I have hit a wall. My team has been volunteering their time to work on the site, which I appreciate. It&#8217;s just that at this pace, we won&#8217;t launch our new site until maybe January of next year.</p>
<p>So I figure, in the meantime, why not work my tail off on the other projects that I started? All that to say that I&#8217;m planning on making a change. In fact, I&#8217;ve already started. And my favorite part is that one of my projects and I am more or less keeping to myself. I usually like to tell people about the various projects I&#8217;m working on and why. But this one&#8230; this one is big. And part of me doesn&#8217;t even want help from my team. I want to accomplish something great on my own, to know that I have what it takes to get &#8216;er done!</p>
<p>This, of course, is another way in which I&#8217;m changing things up. I&#8217;m excited about the project because, when it works, if has the potential to give me a platform to help other people prepare for the coming economic collapse just as I plan to. This project could give me a pretty influential voice as well as the income to properly prepare. And that&#8217;s all I&#8217;ll say about that. This post isn&#8217;t going to be super SEO&#8217;d to try to get readers. This is just between me and my loyal readers. Thanks for listening, and pray for me.</p>
<p>For more information about the coming economic collapse, check out my friend&#8217;s site who sent me the videos at <a href="http://thebasicsofliving.com/">The Basics of Living</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/change/</feedburner:origLink></item>
		<item>
		<title>Marketer Matt’s Step by Step SEO Process</title>
		<link>http://feedproxy.google.com/~r/MarketerMatt/~3/709srh1PgC0/</link>
		<comments>http://marketermatt.com/marketer-matts-step-by-step-seo-process/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 03:43:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[blog commenting]]></category>
		<category><![CDATA[forum posting]]></category>
		<category><![CDATA[keyword research]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[RSS feeds]]></category>

		<guid isPermaLink="false">http://marketermatt.com/?p=8</guid>
		<description><![CDATA[How Do I Advertise My Business Online? This is a very common question for local business owners these days. The statistics are everywhere about how many people do local searches online and how the number has been skyrocketing over the last few years. Any business owners that are unconvinced that the internet is here to stay needs only to look at some of these statistics to see the trends. But of course looking at the statistics only gives us a reason to market but doesn&#8217;t help us much with the &#8220;how.&#8221; So with that, here are some of the steps<a href="http://marketermatt.com/marketer-matts-step-by-step-seo-process/">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<h1>How Do I Advertise My Business Online?</h1>
<p>This is a very common question for local business owners these days. The statistics are everywhere about how many people do local searches online and how the number has been skyrocketing over the last few years. Any business owners that are unconvinced that the internet is here to stay needs only to look at some of <a href="http://www.skyabovelocal.com/questions/local-search-stats">these statistics</a> to see the trends.</p>
<p>But of course looking at the statistics only gives us a reason to market but doesn&#8217;t help us much with the &#8220;how.&#8221; So with that, here are some of the steps that I take when I start a new website to get it set up for SEO success. Be sure to sign up for my newsletter for more!</p>
<p>Part 1 (Getting Set Up and Indexed)<br />
1) Do keyword research to determine what words I want to rank for that will bring in a decent amount of traffic quickly<br />
2) Buy a domain from GoDaddy.com<br />
3) Set up Content Management System (CMS)<br />
4) Create 5 200-300 word posts as quickly as possible. (I schedule the posts to post automatically over the next two days if I write them all the same day.)<br />
5) Socially Bookmark the site using 3 sites (doesn&#8217;t matter which)<br />
6) Set up RSS Feeds with Feedburner</p>
<p>Part 2 (Getting Traction)<br />
1) Write an article and submit it to Ezinearticles.com<br />
2) Search for industry web directories and submit the site to them<br />
3) Find a few forums that I can join relative to the topic and start conversing<br />
4) Submit the blog to RSS directories<br />
5) Submit site to dozens of social bookmarking sites</p>
<p>Part 3 (Keyword Research for Article Titles)<br />
1) Find several relevant keywords that have little to no competition<br />
2) Narrow down this list to keyword terms that would work as article titles<br />
3) Carefully craft these articles around my marketing funnel and post them to the site<br />
4) Link to these articles from the home page</p>
<p>Part 4 (Link Building)<br />
1) Continue to post in forums<br />
2) Post comments on relevant, industry related blog posts<br />
3) Seek out competitors&#8217; back links and obtain as many as possible<br />
4) Seek out opportunities to get link and get them!</p>
]]></content:encoded>
			<wfw:commentRss>http://marketermatt.com/marketer-matts-step-by-step-seo-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marketermatt.com/marketer-matts-step-by-step-seo-process/</feedburner:origLink></item>
	</channel>
</rss>

