<?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>Bonk-Media -  Utah Web Design, Programming, Internet consulting and SEO</title>
	<atom:link href="http://bonk-media.com/feed" rel="self" type="application/rss+xml" />
	<link>http://bonk-media.com</link>
	<description>Web Design, Programming, SEO, and More!</description>
	<lastBuildDate>Wed, 09 Nov 2011 23:09:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adobe Drops Flash for Mobile Phones &#8211; HTML 5 here we come!</title>
		<link>http://bonk-media.com/adobe-drops-flash-for-mobile-phones-html-5-here-we-come.html</link>
		<comments>http://bonk-media.com/adobe-drops-flash-for-mobile-phones-html-5-here-we-come.html#comments</comments>
		<pubDate>Wed, 09 Nov 2011 23:09:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://bonk-media.com/?p=755</guid>
		<description><![CDATA[Adobe has announced that they are dropping flash for mobile phones.  This is quite a game changer in ...]]></description>
			<content:encoded><![CDATA[<p>Adobe has announced that they are dropping flash for mobile phones.  This is quite a game changer in the HTML5 / Flash war.  Although Adobe does not mention they will be dropping flash altogether, it definitely is an eye opener on the influence of the iPhone.</p>
<p>What does this mean for people with flash on their sites?  Nothing.  If you are looking to have a site built however, I would highly recommend that you have it built in HTML5 + CSS3 instead of Flash.  HTML5 and CSS3 are the future, and Flash will be a thing of the past.</p>
<p>With HTML5, you can do most of the things you would be looking to do with flash, it is more search engine friendly, and best of all, mobile devices can load it.  Contact Bonk Media today to find out your options on HTML 5 + CSS3</p>
<p><a href="http://blogs.adobe.com/conversations/2011/11/flash-focus.html">Read Adobe&#8217;s press release here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/adobe-drops-flash-for-mobile-phones-html-5-here-we-come.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip symbols from a string besides period with PHP preg_replace</title>
		<link>http://bonk-media.com/strip-symbols-from-a-string-besides-period-with-php-preg_replace.html</link>
		<comments>http://bonk-media.com/strip-symbols-from-a-string-besides-period-with-php-preg_replace.html#comments</comments>
		<pubDate>Wed, 09 Nov 2011 00:12:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://bonk-media.com/?p=750</guid>
		<description><![CDATA[Today I had to work on an image file upload script.  In the process, I created a quick ...]]></description>
			<content:encoded><![CDATA[<p>Today I had to work on an image file upload script.  In the process, I created a quick function to strip all symbols from the filename besides a period.  Why am I leaving the period?  Because the filename ends in a .jpg or .png.  Here is the function for all to use:</p>
<p>&nbsp;</p>
<p>function stripsymbols($filename){<br />
return preg_replace(&#8220;/[^A-Za-z0-9.]/&#8221;, &#8220;&#8221;, $filename);<br />
}</p>
<p>&nbsp;</p>
<p>This is a very simple function.  To use it just do something like this:</p>
<p>$filename=&#8221;this is my-#$%#$%file.jpg&#8221;;</p>
<p>$filename=stripsymbols($filename);</p>
<p>All set!  If you found this helpful, please send me a shout out.  I do not need credit for using this.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/strip-symbols-from-a-string-besides-period-with-php-preg_replace.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to have a different sidebar for each page in WordPress</title>
		<link>http://bonk-media.com/how-to-have-a-different-sidebar-for-each-page-in-wordpress.html</link>
		<comments>http://bonk-media.com/how-to-have-a-different-sidebar-for-each-page-in-wordpress.html#comments</comments>
		<pubDate>Sun, 30 Oct 2011 22:53:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://bonk-media.com/?p=741</guid>
		<description><![CDATA[Don’t you hate working on a WordPress site and there aren’t enough sidebars?  I recently had a client ...]]></description>
			<content:encoded><![CDATA[<p>Don’t you hate working on a WordPress site and there aren’t enough sidebars?  I recently had a client who wanted a different sidebar for each page. <span id="more-741"></span> I thought this was a bit much, but after the client explained the purpose of it, it made sense to me.  Looking online, I couldn’t find much information on making this happen, so I decided to just create something myself.  Not a programmer?  Don’t worry, you just need to know how to edit template files (and if you don’t just take a look at the video).</p>
<p><strong>Please note:</strong><em> I am not sure if there is a maximum amount of sidebars allowed, or if this will reduce the speed of the site.  I would not recommend this will hundreds of pages, but a typical site it seems fine.</em></p>
<p>First things first, make sure you backup your template file.  After you have done this, login to your WordPress admin.  Go to Appearance &gt; Editor.  On the right hand site look for the theme functions and click on that to edit the file.  We are going to be making a default sidebar, as well as making it so that each page will become a sidebar.  We are not going to be removing the current theme sidebars because every theme will differ.  At the top of the template after the &lt;?php tag, create a new line and enter the following:</p>
<p>if ( function_exists(&#8216;register_sidebars&#8217;) ){</p>
<p>register_nav_menus(array(&#8216;primary&#8217; =&gt; &#8216;Default Sidebar&#8217;));</p>
<p>$pages=get_pages();</p>
<p>foreach($pages as $page){</p>
<p>register_sidebar(array(&#8216;name&#8217;=&gt;$page-&gt;post_title, &#8216;sort_column&#8217;=&gt;&#8217;ID&#8217;,'sort_order&#8217;=&gt;&#8217;ASC&#8217;, &#8216;id&#8217;=&gt;$page-&gt;ID));</p>
<p>&nbsp;</p>
<p>}</p>
<p>&nbsp;</p>
<p>}</p>
<p>&nbsp;</p>
<p>What does this mean?  This code is saying if I am allowed to register sidebars, register a default sidebar.  After that, grab all the pages and create a sidebar for each page name.  After you have done this, click update file at the bottom of the page.  We are now half done with setting everything up.  To test if the sidebars worked, go to Appearance &gt; Widgets.  You should now see sidebars for all of your pages.  Go to Pages &gt; Add new and create a new page.  Give it a unique name and then go back to widgets.  You will see there is now a sidebar for this page.</p>
<p>Everything looks good right? Yes, but we will need to implement these new sidebars on the front end.  This next step will differ a little for each template.  Go to Appearance &gt; Editor and edit Sidebar.  You will want to look for where it talks about the sidebar, something that says dynamic_sidebar.  Remove this line.</p>
<p><strong>Note: </strong><em>If this is inside of an if statement, you will need to also to remove the else / endif.  If you don’t know how to do this, ask a buddy who can help you.</em></p>
<p>Replace the code with the following:</p>
<p>&nbsp;</p>
<p>&lt;?php if(dynamic_sidebar(get_the_title())){</p>
<p>&nbsp;</p>
<p>dynamic_sidebar(get_the_title());</p>
<p>} else {</p>
<p>dynamic_sidebar(&#8216;Default Sidebar&#8217;);</p>
<p>} ?&gt;</p>
<p>&nbsp;</p>
<p>What does this mean?  If there is a sidebar for the page(which there is) then show that sidebar.  Otherwise, show the default sidebar.  Why would the default sidebar be used? This would be useful for the front page, or a post since they do not have their own sidebar.</p>
<p>I hope this tutorial can help anyone out there that needs this for WordPress.  If you use this, please drop me a line, I would be happy to know it helped you.  You do not need to give me credit for this.  Still having trouble with this?  Contact Bonk Media and we would be happy to help you for a nominal fee.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/how-to-have-a-different-sidebar-for-each-page-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Local SEO vs PPC (Google Adwords)</title>
		<link>http://bonk-media.com/local-seo-vs-ppc-google-adwords.html</link>
		<comments>http://bonk-media.com/local-seo-vs-ppc-google-adwords.html#comments</comments>
		<pubDate>Wed, 12 Oct 2011 16:03:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://bonk-media.com/?p=727</guid>
		<description><![CDATA[Having a website is the first step to internet success. The other key component is having people visit ...]]></description>
			<content:encoded><![CDATA[<p>Having a website is the first step to internet success.  The other key component is having people visit your site.<span id="more-727"></span></p>
<div style="clear:both;height:30px;overflow:hidden;"></div>
<p><object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/ptCK1IPMf10?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/ptCK1IPMf10?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>There are many pros and cons to SEO and using Google Adwords for your PPC campaign.  Before talking about the pros and cons of each, let&#8217;s first talk a little bit about what SEO and PPC campaigns are.</p>
<p><strong>What is SEO?</strong><br />
Search Engine Optimization (SEO) is the process of improving the volume of quality of traffic to a web site from search engines via &#8220;natural&#8221; or un-paid search results as opposed to Pay Per Click (PPC) which deals with paid inclusion. What does this mean exactly? Quite simply, it is having your site optimized so that you can rank higher up on the search engines organically. Once you get to the top, you don&#8217;t have to keep paying.</p>
<p><strong>What is PPC and Google Adwords?</strong><br />
PPC stands for Pay Per Click.  It is a way to market your site, where you pay a company every time someone clicks on the advertisement.  There are many places where you can do this, and the biggest place is with Google Adwords.  Google will allow your site to show up at the very top of the search results page (in the ads section) if you pay them every time someone clicks on the link.  The cost varies, but can be from 5 cents to $50.00 a click and even higher.</p>
<p><strong>Pros and Cons</strong><br />
When you first look at SEO and PPC, it looks like SEO is a much better route to go.  We would agree with you on this.  However, we recommend doing both to begin with.  SEO is great when you get to the top of the search engines, but it can take time, and you aren&#8217;t guaranteed to get to the top of search engines ever.  Anyone that can guarantee this is either lying, or using unapproved methods to get you to the top.</p>
<p>PPC campaigns are great to use while you are running an SEO campaign.  You are at the top of the search engines paying for each click while the SEO work is being done.  This way, you can get traffic and sales from day one.  Once you get to the top of the search engines from your SEO campaign, you simply stop your PPC campaign.</p>
<p><strong>Conclusion</strong><br />
Having an internet marking plan is essential.  SEO and PPC campaigns are a great way to bring traffic to your site.  Bonk Media has proven results in both SEO campaigns, and a solid Click Through Rate on our PPC campaigns.  Contact Bonk Media today for a free internet marketing consultation.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/local-seo-vs-ppc-google-adwords.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome to the Bonk Media Video Blog</title>
		<link>http://bonk-media.com/welcome-to-the-bonk-media-video-blog.html</link>
		<comments>http://bonk-media.com/welcome-to-the-bonk-media-video-blog.html#comments</comments>
		<pubDate>Tue, 20 Sep 2011 20:20:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://bonk-media.com/?p=721</guid>
		<description><![CDATA[Welcome to the Bonk Media Video blog. My name is Shaun and I am the Executive Director at ...]]></description>
			<content:encoded><![CDATA[<p>Welcome to the Bonk Media Video blog. My name is Shaun and I am the Executive Director at Bonk Media.  I wanted to take a minute and explain a little bit about the company and what to expect from the blogs.<span id="more-721"></span></p>
<div style="clear:both;height:30px;overflow:hidden;"></div>
<p><object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/L_RH-6cMQw4?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/L_RH-6cMQw4?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>Bonk Media has been in business for over 13 years now.  At first, it started out with me being contracted to build sites, but now we have turned out to be a full fledged multimedia studio.  We are really your one stop shop for all of your multimedia needs.  We do things from illustrations to animations, to websites, to mobile apps.  There really is no limit.  For more information about what we offer, check out our site for details.</p>
<p>I will be posting a new video blog every week to every two weeks.  These video blogs will be discussing ideas for your business, new technology that comes out, internet marketing tips, and more!  We feel that there are many companies out there that try and take you for everything you got just to make a buck.  At Bonk Media, we help you sort out what will benefit you the most on getting success and a good return on investment.</p>
<p>Thank you for visiting this video blog, and I look forward to hearing your comments and working with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/welcome-to-the-bonk-media-video-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Smith of Grease Monkey</title>
		<link>http://bonk-media.com/steve-smith-of-grease-monkey.html</link>
		<comments>http://bonk-media.com/steve-smith-of-grease-monkey.html#comments</comments>
		<pubDate>Fri, 15 Jul 2011 20:13:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Testimonials]]></category>

		<guid isPermaLink="false">http://bonk-media.com/beta/?p=515</guid>
		<description><![CDATA[This video testimonial is by Steve Smith of American Fork]]></description>
			<content:encoded><![CDATA[<p>This video testimonial is by Steve Smith of American Fork<span id="more-515"></span></p>
<div style="clear:both;height:30px;overflow:hidden;"></div>
<p><object width="560" height="349"><param name="movie" value="http://www.youtube.com/v/22Jp7-1Xf3Q?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="560" height="349" src="http://www.youtube.com/v/22Jp7-1Xf3Q?version=3&amp;hl=en_US&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/steve-smith-of-grease-monkey.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mark Swartz of DNMG</title>
		<link>http://bonk-media.com/mark-swartz-of-dnmg.html</link>
		<comments>http://bonk-media.com/mark-swartz-of-dnmg.html#comments</comments>
		<pubDate>Fri, 15 Jul 2011 20:10:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Testimonials]]></category>

		<guid isPermaLink="false">http://bonk-media.com/beta/?p=511</guid>
		<description><![CDATA[This video testimonial is by Mark Swartz]]></description>
			<content:encoded><![CDATA[<p>This video testimonial is by Mark Swartz<span id="more-511"></span></p>
<div style="clear:both;height:30px;overflow:hidden;"></div>
<p><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/iVESB5FnaAY?version=3&amp;hl=en_US&amp;rel=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/iVESB5FnaAY?version=3&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/mark-swartz-of-dnmg.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mariel Mendoza</title>
		<link>http://bonk-media.com/mariel-mendoza-2.html</link>
		<comments>http://bonk-media.com/mariel-mendoza-2.html#comments</comments>
		<pubDate>Fri, 08 Jul 2011 15:48:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Testimonials]]></category>

		<guid isPermaLink="false">http://bonk-media.com/beta/?p=499</guid>
		<description><![CDATA[This video testimonial is by model Mariel Mendoza.]]></description>
			<content:encoded><![CDATA[<p>This video testimonial is by model Mariel Mendoza.<span id="more-499"></span></p>
<div style="clear:both;height:30px;overflow:hidden;"></div>
<p><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/K_xKFVtzuIk?version=3&amp;hl=en_US&amp;rel=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/K_xKFVtzuIk?version=3&amp;hl=en_US&amp;rel=0" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/mariel-mendoza-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taylor Lowe</title>
		<link>http://bonk-media.com/taylor-lowe.html</link>
		<comments>http://bonk-media.com/taylor-lowe.html#comments</comments>
		<pubDate>Thu, 07 Jul 2011 20:13:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Testimonials]]></category>

		<guid isPermaLink="false">http://bonk-media.com/beta/?p=518</guid>
		<description><![CDATA[This video testimonial is by model Taylor Lowe.]]></description>
			<content:encoded><![CDATA[<p>This video testimonial is by model Taylor Lowe.<span id="more-518"></span></p>
<p><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/aCyTq8YmoxM?version=3&amp;hl=en_US&amp;rel=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/aCyTq8YmoxM?version=3&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/taylor-lowe.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grease Monkey of American Fork</title>
		<link>http://bonk-media.com/grease-monkey-of-american-fork.html</link>
		<comments>http://bonk-media.com/grease-monkey-of-american-fork.html#comments</comments>
		<pubDate>Thu, 28 Oct 2010 19:49:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.bonk-media.com/?p=426</guid>
		<description><![CDATA[We have finished Grease Monkey of American Fork! Grease Monkey is one of the largest independently-owned franchiser of ...]]></description>
			<content:encoded><![CDATA[<p><img style="float: left; padding-right: 15px;" src="http://bonk-media.com/beta/wp-content/uploads/2010/10/logo-grease-monkey.png" alt="Grease Monkey" />We have finished <a href="http://americanforkoilchange.com" target="_blank">Grease Monkey of American Fork!</a> Grease Monkey is one of the largest independently-owned franchiser of automotive preventive maintenance centers in the United States. Grease Monkey has more than 200 centers operating in the United States and in Mexico.  We are very happy with how the site turned out, and welcome your opinion as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonk-media.com/grease-monkey-of-american-fork.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

