<?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>GKB Solutions</title>
	<atom:link href="http://gkbsolutions.com/feed" rel="self" type="application/rss+xml" />
	<link>http://gkbsolutions.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 May 2013 17:21:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>WordPress Tip: Exclude categories from &quot;the_category()&quot; template tag</title>
		<link>http://gkbsolutions.com/163-wordpress-exclude-categories.html</link>
		<comments>http://gkbsolutions.com/163-wordpress-exclude-categories.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 10:53:05 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[Marketing Tips]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=163</guid>
		<description><![CDATA[Here is another helpful wordpress tip involving the &#8220;categories&#8221; template tag &#8220;the_category()&#8221;. By default, the category template tag shows which category your post is in by creating an unordered, vertical list with bullet points. Most people then control the look&#160;&#8230; <a href="http://gkbsolutions.com/163-wordpress-exclude-categories.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Here is another helpful wordpress tip involving the &#8220;categories&#8221; template tag &#8220;the_category()&#8221;. By default, the category template tag shows which category your post is in by creating an unordered, vertical list with bullet points. Most people then control the look of the category list via css to make it better fit into the design of their theme.</p>
<p>Many of us will have the same post associated with multiple categories and want all of them to be displayed. The &#8220;the_category()&#8221; template tag will output all of those associated categories. But, some of us also use categories for structure&#8230; to display a post in an appropriate place in a particular theme design. For example, when you want a particular post featured you might use a category labeled &#8220;Featured&#8221; to ensure that the post shows up in a certain place on your page.</p>
<p>Here is the problem&#8230; unless you want the category list to display &#8220;Featured&#8221; next to it&#8217;s more appropriate category classifications you need to make a change to the category template tag&#8217;s output.</p>
<p>If only wordpress would allow a simple &#8220;exclude category&#8221; parameter in the template tag, but it currently does not. But, with a little extra coding you can accomplish this.</p>
<p>Take a look at the code below:</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
//edit below for categories you want to be excluded
$exclude = array(&quot;Featured&quot;, &quot;Uncategorized&quot;);
//edit below for how you want the category items separated
$separator = &quot; | &quot;;
//don't edit below here!!
$new_the_category = '';
foreach((get_the_category()) as $category) {
if (!in_array($category-&gt;cat_name, $exclude)) {
$new_the_category .= '&lt;a href=&quot;'.get_bloginfo(url).'/'.get_option('category_base').'/'.$category-&gt;slug.'&quot;&gt;'.$category-&gt;name.'&lt;/a&gt;'.$separator;
}
}
echo substr($new_the_category, 0, strrpos($new_the_category, $separator));
?&gt;</pre>
<p>Simply replace the &#8220;the_category()&#8221; with the above code and list the category names you want to be invisible where we have &#8220;Featured&#8221;, &#8220;Uncategorized&#8221;.</p>
<p>NOTE: Depending on how you have your permalinks set up, you will probably have to explicitly state &#8220;category&#8221; in the permalinks settings for the urls to work properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/163-wordpress-exclude-categories.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tip: How to display multiple loops on the same page</title>
		<link>http://gkbsolutions.com/147-multiple-wordpressloops-on-the-same-page.html</link>
		<comments>http://gkbsolutions.com/147-multiple-wordpressloops-on-the-same-page.html#comments</comments>
		<pubDate>Tue, 26 Jan 2010 09:00:35 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[Marketing Tips]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=147</guid>
		<description><![CDATA[I absolutely love wordpress. In case you are not familiar with it, it&#8217;s an open source publishing system originally intended for blogs, but has grown into one of the most robust and user-friendly CMS (content management systems) tools on the market.&#160;&#8230; <a href="http://gkbsolutions.com/147-multiple-wordpressloops-on-the-same-page.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>I absolutely love <a href="http://www.wordpress.org" target="_blank">wordpress</a>. In case you are not familiar with it, it&#8217;s an open source publishing system originally intended for blogs, but has grown into one of the most robust and user-friendly CMS (content management systems) tools on the market. Granted, it still takes skill and experience to design and develop for it but it has really become a favorite of mine. So, I thought I&#8217;d start offering up little tips and tricks that I&#8217;ve been learning along the way. Being an open source tool, I think it&#8217;s imperative that we share our experience with this great tool because, as I&#8217;m finding out on a daily basis, there&#8217;s always multiple ways to do everything and so much to learn.</p>
<p>Today&#8217;s tip is how to display multiple loops the same page. By default, the wordpress loop (ie. the code that queries the database to display your posts) handles one list. But, here is an easy way to do multiple loops on the same page. This is especially useful when you have multiple categories that you&#8217;d like to highlight on your page.</p>
<p>On your &#8220;index.php&#8221; template (or any of your page templates, for that matter. NOTE: this only works directly on your page template files, you can&#8217;t insert it from the wordpress admin into the content of your pages) just paste the following code which uses &#8220;WP_Query&#8221;:</p>
<pre class="brush: php; title: ; notranslate">&lt;ul&gt;&lt;?php $my_query = new WP_Query('category_name=InsertCategoryNameHere&amp;posts_per_page=5');
while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();
$do_not_duplicate = $post-&gt;ID; ?&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile; ?&gt;
&lt;/ul&gt;
</pre>
<p>As you can see, all you do is replace the &#8220;InsertCategoryNameHere&#8221; with your intended category name (when using permalinks), and place it wherever on your page you want the list to go. You can also control how many links you want to display (in this case I chose 5). Then you just do normal css styling of your lists. For your next loop, again just replace the category name and place it wherever you want on your page.</p>
<p>I hope that helps. If you have any questions please feel free to comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/147-multiple-wordpressloops-on-the-same-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Subject Line Length&#8230;Does it matter?</title>
		<link>http://gkbsolutions.com/114-email-subject-line.html</link>
		<comments>http://gkbsolutions.com/114-email-subject-line.html#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:00:34 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[Marketing Tips]]></category>
		<category><![CDATA[email marketing]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=114</guid>
		<description><![CDATA[A topic that keeps coming up with email marketing is the subject line. I often get asked if there are any specific &#8220;rules&#8221; to the character length. I would never go as far as to call these &#8220;rules&#8221; but there are&#160;&#8230; <a href="http://gkbsolutions.com/114-email-subject-line.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>A topic that keeps coming up with email marketing is the subject line. I often get asked if there are any specific &#8220;rules&#8221; to the character length. I would never go as far as to call these &#8220;rules&#8221; but there are certain target numbers to consider. First off, before getting into those target numbers, what you have to say is WAY more important than counting a certain number of characters. You may find a subject line that works best for a specific promotion to be no more than one or two words. There&#8217;s no better way to find out than to test some subject lines to a small percentage of your list and then roll out the winning subject line to the bulk of your list.</p>
<p>There are now many different ways that people read email. Long gone are the days when you only had to worry about &#8220;will they read this at work?&#8221; or &#8220;will they read this at home?&#8221;. Those days you had to only figure out if your readers would be viewing your email using their company&#8217;s default email program (like Microsoft Outlook, or LOTUS Notes) or via a web-based email tool like AOL, Yahoo, or Hotmail. Nowadays many people are reading their emails on their iPhones and other mobile devices. Because of that, I tend to recommend that the &#8220;meat&#8221; of your subject line be no longer than 40 characters (including spaces) in length. You can go longer (around 50 characters or so for promotional emails, no longer than 75 for most newsletters) but I would really try to get your main point across in those first 40 characters. In fact, make it less if you can. The iPhone appears to only show the first 37 characters of the subject line. I know that I read a lot of my email on my iPhone these days and the &#8220;from line&#8221; and &#8220;subject line&#8221; are very important in my decision to open the message or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/114-email-subject-line.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization, SEO, Tips</title>
		<link>http://gkbsolutions.com/95-seo-tips.html</link>
		<comments>http://gkbsolutions.com/95-seo-tips.html#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:39:14 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[Marketing Tips]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=95</guid>
		<description><![CDATA[Search engine optimization, or SEO, is something that a lot of people ask us about. One thing that I usually tell clients is that there are no &#8220;optimize&#8221; buttons that immediately improve your site&#8217;s rankings in the major search engines.&#160;&#8230; <a href="http://gkbsolutions.com/95-seo-tips.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Search engine optimization, or SEO, is something that a lot of people ask us about. One thing that I usually tell clients is that there are no &#8220;optimize&#8221; buttons that immediately improve your site&#8217;s rankings in the major search engines. Nor is SEO something that you do just once and then forget about. It&#8217;s an ongoing process that ultimately makes for a better online experience for your website visitors.</p>
<p>Here are a few tips that may help you:</p>
<p><strong>1. Create a great website.<br />
</strong>There are no tricks to search engine optimization. Maybe there were tricks back in 1997 but search engines now are really just looking for good quality websites devoted to specific subject matter. Be mindful of your website&#8217;s content. Is it useful and informative? Is your content readable and easy to find? Always try to think from your customer&#8217;s or site visitor&#8217;s perspective.</p>
<p><strong>2. Be realistic and patient.<br />
</strong>Search engine optimization is a continual process that requires time and energy devoted to making your site as useful and relavent to your audience for your particular services. You won&#8217;t see immediate results but the long term benefits are very worthwhile. Results often take months to see, especially if you are new to doing business online or a relatively small company. You have to be realistic in your expectations. You should not focus on overly general terms like &#8220;doctor&#8221; because the competition for that word will be too tough. You should, however, focus on more specific terms like &#8220;philadelphia gastroenterologist&#8221;. </p>
<p><strong>3. Remove &#8220;barriers&#8221; that inhibit the crawling of your site.</strong><br />
Having session IDs or too many variables in your website&#8217;s URLs can affect the ability of the search engine&#8217;s to properly crawl and index your site. Also, an incorrect robots.txt file, confusing navigation structure or developing in all flash or all graphics can limit how a search engine accesses your content.</p>
<p><strong>4. Pay attention to your page titles, meta descriptions and urls.<br />
</strong>The page title is very important in SEO. Make sure that your page title contains 2 or 3 words that you hope to attract via search engine searches. The description, though not that important for the search engine rankings, will most likely appear under your title in the search listings. Be sure to write a descriptive sentence that captures the essence of what&#8217;s on the page. For the urls, it&#8217;s really good to have the main keywords in the url and filename&#8230; http://www.yourdomain.com/philadelphia-gastroenterologist/. Use hyphens instead of underscores and limit the hyphens to no more than 3 in the url (any more and you may be looked at as spamming your url).</p>
<p><strong>5. Research your keywords at the start of your website project<br />
</strong>Using such tools like WordTracker or Google AdWords, you can see which keywords are being used for specific subjects. Pay attention to the volume of one search phrase versus another. You may find that your audience uses words that you haven&#8217;t thought of regarding your business.</p>
<p><strong>6. Use keywords as anchor text in your internal links.</strong><br />
Instead of using &#8220;click here&#8221; for all of your internal links put the link on a relevant keyword. For example, if you are linking to your site&#8217;s page about &#8220;email marketing&#8221; put the link on that phrase. It will tell the search engine spider what the linked-to page is about.</p>
<p><strong>7. Increase your exposure wherever possible.<br />
</strong>One great way to create fresh, relevant content is with a blog. Put your blog on your domain at http://www.yourdomain.com/blog and write useful articles about your expertise. Allow your blog&#8217;s readers to comment on your articles too. It generates a nice interactive community atmosphere and will most likely add more targeted keywords to your page. You can also think about providing content to other sites like yahoo answers on subject matter related to your site.</p>
<p><strong>8. Use social media marketing.</strong><br />
This is still a new marketing medium which means that it can easily be abused. Sites like Twitter are great for creating links back to your website. Using their API tool, you can set up automatic links on your business&#8217; Twitter page whenever you add new content to your site. Unless you really know your audience wants it, I would never recommend that a business make &#8220;random thought&#8221; tweets on the company Twitter page. Those are the comments like &#8220;I&#8217;m sitting on the couch watching baseball.&#8221; Maybe your company&#8217;s followers like that sort of thing but I usually don&#8217;t recommend it for businesses. You can also set up accounts with Flickr, Facebook, MySpace, LinkedIn and others. You&#8217;d be surprised on how social media marketing can be used to increase targeted traffic to your site thus improving your SEO efforts.</p>
<p><strong>9. Create a site map page.</strong><br />
While some of your readers will never visit this page, and others may prefer it over your default navigation, a site map page is most suited for the search engines. It creates a one-stop repository for your entire site. If you have a large site, however, limit the number of links per site map page to about 70 or so per page. Larger sites will just utilize multiple site map pages.</p>
<p><strong>10. Have a baseline view of your website prior to your SEO efforts.<br />
</strong>It&#8217;s best to know where you are starting from prior to making any significant changes to your website&#8217;s content or structure. Find out how your targeted keywords list your site in the major search engines like google, yahoo, aol, etc.</p>
<p><strong>11. Create Google and Yahoo Site Map files.</strong><br />
Not to be confused with a visible site map page on your site, site map files are usually text or xml-based files that are used by google and yahoo to better index your site.</p>
<p><strong>12. Don&#8217;t fall for SEO spam.</strong><br />
You will probably receive emails at some point that offer you &#8220;submission to over 1000 search engines and directories&#8221; and &#8220;2000 quality links for $60&#8243; or something along those lines. Those tactics are unnecessary and considered to be SEO spam by the major search engines.</p>
<p>These are by no means the only things to consider with search engine optimization but they are a great place to start. Hire an honest marketing company to help you with your SEO needs. Just remember that no reputable SEO company can guarantee a number one ranking on any search engine for quality keywords and search phrases. A reputable company you hire will only follow best practices for SEO and not utilize any tactics that may be considered spam and potentially damage your online reputation. SEO work is a continual process and should always focus on improving your site content over time and create an overall better user experience. GKB Solutions will be happy to help you with your SEO needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/95-seo-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who are you? Optimize your email’s “From” field</title>
		<link>http://gkbsolutions.com/78-email-from-field.html</link>
		<comments>http://gkbsolutions.com/78-email-from-field.html#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:31:41 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[Marketing Tips]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=78</guid>
		<description><![CDATA[The first two things anyone sees with your emails are your subject line and the “from” field. First impressions are really important in email marketing. You never want your readers to say “who sent this?” or, even worse, confuse you&#160;&#8230; <a href="http://gkbsolutions.com/78-email-from-field.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>The first two things anyone sees with your emails are your subject line and the “from” field. First impressions are really important in email marketing. You never want your readers to say “who sent this?” or, even worse, confuse you with someone a lot less reputable.</p>
<p>I remember back in the mid 90’s, before the days of spam filters and bulk email folders, when you could go hours (heck, even a day or so) without getting an email. I remember the excitement of seeing a new message in my inbox. Back then I opened and read everything that was sent to me. I bet you did too. Can you honestly say that now? As I type this I’m looking at my inbox and it says “1704 messages, 599 unread”. Ugh. I swear I just cleaned out the stupid thing the other day… delete these messages, put client messages in their appropriate folders, delete even more, and so on. But they just pile up, and up.</p>
<p>Without the from field I would be completely lost. Everyone pays so much attention to the subject line that I think the poor from field doesn’t get its due respect. Let me explain… with 1704 messages, oops now 1705, do you really think I’m paying very close attention to the subject line? How can I? With so many subject lines with 10% off, no 20% off, no even better 50% off, wait buy 1 get 1 free, how about buy 1 get 2 free, they all just blend together. Who cares? I get it, everything is on sale. I would probably pay closer attention if someone said “Everything on the site is now more expensive than ever!!”</p>
<p>What I really care about is who the email is from. As a marketer, you always try to come up with new ways to wow your customers. So you keep throwing them deal after deal and hope that you finally pique their interest (piquing interest can be subject of another article because you should really be analyzing your data using previous behavior to better judge future behavior). As I said, the first two things that are visible with an email is the from field and the subject line. You should ask yourself a few questions… are all of the emails coming from my site whether they are promotional emails sent to your customer list, or automated transactional messages, properly identified by the name your customers know you as?</p>
<p>You need to determine the name that your customers most associate you with. If you have a recognizable brand name but your transactional emails are going out with “tech support” in the from name, you can just consider that email dead on arrival. In fact, unless you can test this otherwise, it’s never a good idea to have your emails say “support” or “webmaster” or anything that generic (unless your company is actually named “support inc” or something. If you have a newsletter, it’s probably a good idea to include your company’s name before the name of the newsletter. The “Disney Insider” is a good example. If the from name just said “Insider” I would be less likely to ever open it. Also, when sorting the inbox, it would come up as Disney. Just remember to test before making any permanent changes.</p>
<p>Hopefully most of you already have your most recognizable name in your from field. But, you should take a close look at the setup of your transactional emails. Everything from order invoices, shipping notifications, technical support tickets, to site registration emails. Just think, if your customers don’t immediately recognize your email by looking at the from field they may just click the delete button before even getting to your unique “everything is now more expensive!” subject line. To all the marketers out there, keep the emails coming, I’d love to hear from you… just make sure I can figure out who you are.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/78-email-from-field.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GKB Solutions is hiring!</title>
		<link>http://gkbsolutions.com/1-gkb-is-hiring.html</link>
		<comments>http://gkbsolutions.com/1-gkb-is-hiring.html#comments</comments>
		<pubDate>Wed, 05 Aug 2009 20:21:08 +0000</pubDate>
		<dc:creator>Greg Bengston</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://gkbsolutions.com/?p=1</guid>
		<description><![CDATA[GKB Solutions is hiring! We are currently looking for graphic designers with experience in website, email, and flash design. Also, we are also looking for html developers with experience in html, CSS, and PHP coding. If you are interested, please&#160;&#8230; <a href="http://gkbsolutions.com/1-gkb-is-hiring.html">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>GKB Solutions is hiring! We are currently looking for graphic designers with experience in website, email, and flash design. Also, we are also looking for html developers with experience in html, CSS, and PHP coding. If you are interested, please send your resume to info@gkbsolutions.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://gkbsolutions.com/1-gkb-is-hiring.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via gkbcdnpull.gkbsolutions.netdna-cdn.com

 Served from: gkbsolutions.com @ 2013-05-23 04:08:09 by W3 Total Cache -->