<?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>Mike Meisner &#187; General</title>
	<atom:link href="http://www.mikemeisner.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikemeisner.com</link>
	<description>Web Design &#38; SEO Specialist</description>
	<lastBuildDate>Mon, 23 Aug 2010 17:29:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>One category page, multiple headings</title>
		<link>http://www.mikemeisner.com/general/one-category-page-multiple-headings/</link>
		<comments>http://www.mikemeisner.com/general/one-category-page-multiple-headings/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:16:26 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=768</guid>
		<description><![CDATA[Conditional PHP statements can be your best friend when developing for WordPress. They allow you to display information based on certain conditions. We can use WordPress&#8217; internal meta data, such as tags and categories, to determine what to display in certain cases. In this case, we want to simply display a unique heading for various [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/create-multiple-single-page-templates-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple single page templates by category in Wordpress'>Create multiple single page templates by category in Wordpress</a></li><li><a href='http://www.mikemeisner.com/general/create-multiple-headers-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple headers in Wordpress'>Create multiple headers in Wordpress</a></li><li><a href='http://www.mikemeisner.com/notebook/deliver-targeted-ads-to-visitors-using-wordpress/' rel='bookmark' title='Permanent Link: Deliver targeted ads to visitors using WordPress'>Deliver targeted ads to visitors using WordPress</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Conditional PHP statements can be your best friend when developing for WordPress. They allow you to display information based on certain conditions. We can use WordPress&#8217; internal meta data, such as tags and categories, to determine what to display in certain cases. In this case, we want to simply display a unique heading for various categories.</p>
<p>In your category.php page you&#8217;ll want to paste this code snippet:</p>
<p>Here&#8217;s a quick snippet of code that allows you to include any number of different headings using one category page. Of course, adjust the category id to your own.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;h1&gt;Classifieds&lt;/h1&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'4'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;h1&gt;Environment &amp; Real Estate&lt;/h1&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'18'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;h1&gt;Hot Buzz&lt;/h1&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'16'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;h1&gt;Product Plaza&lt;/h1&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'7'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;h1&gt;Menu Development&lt;/h1&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This is a basic, but powerful idea. You can use &#8220;elseif has_tag(&#8216;tagname here&#8217;))&#8221; to do the same thing with tags instead of categories for instance.</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/create-multiple-single-page-templates-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple single page templates by category in Wordpress'>Create multiple single page templates by category in Wordpress</a></li><li><a href='http://www.mikemeisner.com/general/create-multiple-headers-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple headers in Wordpress'>Create multiple headers in Wordpress</a></li><li><a href='http://www.mikemeisner.com/notebook/deliver-targeted-ads-to-visitors-using-wordpress/' rel='bookmark' title='Permanent Link: Deliver targeted ads to visitors using WordPress'>Deliver targeted ads to visitors using WordPress</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/one-category-page-multiple-headings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Essential WordPress SEO Plugins and Tips</title>
		<link>http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/</link>
		<comments>http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:11:05 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=770</guid>
		<description><![CDATA[WordPress is the best platform to develop a site on for many reasons. It&#8217;s simple interface allows you to easily manage your site, and a worldwide community of developers have created some amazing plugins that build off the inherently awesome SEO foundation of WordPress. I consider the list below some of the most &#8220;essential&#8221; plugins [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link'>WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link-2/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &quot;Read More&quot; Link'>WordPress SEO Trick &#8211; Optimize &quot;Read More&quot; Link</a></li><li><a href='http://www.mikemeisner.com/featured/seo-case-study/' rel='bookmark' title='Permanent Link: SEO Case Study'>SEO Case Study</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress is the best platform to develop a site on for many reasons. It&#8217;s simple interface allows you to easily manage your site, and a worldwide community of developers have created some amazing plugins that build off the inherently awesome SEO foundation of WordPress. I consider the list below some of the most &#8220;essential&#8221; plugins that I install on every site to greatly enhance SEO and boost traffic.</p>
<p><a href="http://wordpress.org/extend/plugins/platinum-seo-pack/">Platinum SEO Pack </a> &#8211; What more can I say about this, other than it should be required and used by anyone who&#8217;s faintly interested in optimizing their site. It lets you optimize every page AND post&#8217;s title, description, and keywords. </p>
<p><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemap generator</a> &#8211; Does what it says. Generates a site map on the fly and submits it to the major search engines, including Google. Helps attract those search engine spiders.</p>
<p><a href="http://wordpress.org/extend/plugins/seo-automatic-links/">SEO Smartlinks</a> &#8211; Internal link juice is great, and this plugin finds related keywords and phrases from other stories or posts on your site, and automatically links to them.</p>
<p>A good ping list &#8211; Go to &#8220;Settings &#8211; Writing&#8221; and check what services are notified when you update your blog. If you&#8217;ve never been there before, chances are there&#8217;s only one. I&#8217;ve compiled a list of well over a hundred sites to notify when you update your site. <a href="http://www.mikemeisner.com/wp-content/uploads/2009/11/pinglist.txt">Download it here!</a></p>
<p><a href="http://www.autosocialposter.com/">Auto Social Poster</a> or Wicked WP Poster &#8211; Don&#8217;t you have having to go to Twitter and announce your last blog post, or trying to bookmark your site in delicious to bump some traffic? These do all that and more for you; automated social bookmarking made easy.</p>
<p><a href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-super-comments">SEO Super Comments</a> &#8211; Now you can have each comment become an individual indexed page on your site. Brilliant!</p>
<p>Some other essential plugins:<br />
<a href="http://www.maxblogpress.com/plugins/mpo/">Maxblogpress ping optimizer</a> &#8211; Save your site from becoming a ping spammer with this plugin.<br />
<a href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/">YARRP</a> &#8211; Yet another related posts plugin. Helps boost internal page links by pointing users to related articles and posts.</p>
<p>A better &#8220;Read more&#8221; link &#8211; You can see my previous post for more on this, but the point is to generate a keyword-rich internal link by using the post title as the &#8220;Read more&#8221; link.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Continue Reading'</span> get_the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>



<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link'>WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link-2/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &quot;Read More&quot; Link'>WordPress SEO Trick &#8211; Optimize &quot;Read More&quot; Link</a></li><li><a href='http://www.mikemeisner.com/featured/seo-case-study/' rel='bookmark' title='Permanent Link: SEO Case Study'>SEO Case Study</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A well rounded expert</title>
		<link>http://www.mikemeisner.com/general/a-well-rounded-expert/</link>
		<comments>http://www.mikemeisner.com/general/a-well-rounded-expert/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 17:28:37 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[homepage]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=683</guid>
		<description><![CDATA[Hello, and thank you for visiting my personal website and online portfolio. My name is Mike Meisner, and I specialize in front-end design and standards-compliant XHTML and CSS. I also have expertise in JavaScript, PHP, internet marketing,  SEO, WordPress, templating, and various content management systems.

Visual Elegance
In design I strive to balance between text and [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/general/web-development/' rel='bookmark' title='Permanent Link: Web Development &#038; Ecommerce'>Web Development &#038; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/web-development-2/' rel='bookmark' title='Permanent Link: Web Development &amp; Ecommerce'>Web Development &amp; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/our-services/' rel='bookmark' title='Permanent Link: My Services'>My Services</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Hello, and thank you for visiting my personal website and online portfolio. My name is Mike Meisner, and I specialize in front-end design and standards-compliant XHTML and CSS. I also have expertise in JavaScript, PHP, internet marketing,  SEO, WordPress, templating, and various content management systems.<br />
<br />
<strong>Visual Elegance</strong><br />
<a href="http://www.mikemeisner.com/wp-content/uploads/2009/09/star_blue.png" rel="lightbox[683]"><img src="http://www.mikemeisner.com/wp-content/uploads/2009/09/star_blue.png" alt="star_blue" title="star_blue" width="32" height="32" class="alignleft size-full wp-image-780" /></a>In design I strive to balance between text and visual elements, and I love to create websites that are attractive and elegant, yet also simple, informative and accessible to all.<br />
<br />
<strong>Search Engine Optimization</strong><br />
<a href="http://www.mikemeisner.com/wp-content/themes/creativepress/images/Google.png" rel="lightbox[683]"><img src="http://www.mikemeisner.com/wp-content/themes/creativepress/images/Google.png" alt="star_blue" title="star_blue" width="32" height="32" class="alignleft size-full wp-image-780" /></a>I believe WordPress is the best platform for SEO. It&#8217;s been said to &#8220;Be in bed with Google&#8221; and I believe it. Combined with article marketing, social networking and bookmarking, and building intricate &#8220;linkwheels&#8221; to maximize keyword targeting, you&#8217;ll get to the first page of Google in no time &#8211; and that&#8217;s the most important aspect of having a website for most people.<br />
<br />
<strong>Simple Management</strong><br />
<a href="http://www.mikemeisner.com/wp-content/uploads/2009/09/environment_view.png" rel="lightbox[683]"><img src="http://www.mikemeisner.com/wp-content/uploads/2009/09/environment_view.png" alt="environment_view" title="environment_view" width="32" height="32" class="alignleft size-full wp-image-781" /></a>I believe websites should be easy to manage and update. I use WordPress as my development platform, and find that it accommodates anyone&#8217;s needs. It&#8217;s incredibly easy to learn and you can easily manage your entire website with a few mouse clicks.<br />
<br />
<strong>Customer Focus</strong><br />
<a href="http://www.mikemeisner.com/wp-content/themes/creativepress/images/peeps.png" rel="lightbox[683]"><img src="http://www.mikemeisner.com/wp-content/themes/creativepress/images/peeps.png" alt="businessmen" title="businessmen" width="32" height="32" class="alignleft size-full wp-image-784" /></a>I have worked with hundreds of customers in all sorts of markets. From initial meetings, to continued training and help after a project is done, I am always available and offer the best support to my clients.<br />
<br />
<strong>All the Trimmings</strong><br />
During my career as a web designer I have juggled a number of roles and developed a well-rounded set of skills. If you are looking for someone who can &#8220;do it all&#8221;, look no further. I am an expert in internet and affiliate marketing; I create original graphics for print and the web; Contact me today!</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/general/web-development/' rel='bookmark' title='Permanent Link: Web Development &#038; Ecommerce'>Web Development &#038; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/web-development-2/' rel='bookmark' title='Permanent Link: Web Development &amp; Ecommerce'>Web Development &amp; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/our-services/' rel='bookmark' title='Permanent Link: My Services'>My Services</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/a-well-rounded-expert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why Choose Me?</title>
		<link>http://www.mikemeisner.com/general/why-choose-me/</link>
		<comments>http://www.mikemeisner.com/general/why-choose-me/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 00:04:48 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=654</guid>
		<description><![CDATA[You won&#8217;t get confused with technical jargon. I am patient and address all your concerns promptly and politely. 

I create websites you can update yourself &#8211; no technical experience necessary
I have worked with websites for nearly ten years
I have high rates of client retention and satisfaction
I have a diverse portfolio

Let&#8217;s get started today!


Related posts:Industry KnowledgeWebsite [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/general/industry-knowledge/' rel='bookmark' title='Permanent Link: Industry Knowledge'>Industry Knowledge</a></li><li><a href='http://www.mikemeisner.com/general/website-maintenance/' rel='bookmark' title='Permanent Link: Website Maintenance'>Website Maintenance</a></li><li><a href='http://www.mikemeisner.com/notebook/local-business-marketing-introduction/' rel='bookmark' title='Permanent Link: Local Business Marketing &#8211; Introduction'>Local Business Marketing &#8211; Introduction</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>You won&#8217;t get confused with technical jargon. I am patient and address all your concerns promptly and politely. </p>
<ul>
<li>I create websites you can update yourself &#8211; no technical experience necessary</li>
<li>I have worked with websites for nearly ten years</li>
<li>I have high rates of client retention and satisfaction</li>
<li>I have a diverse portfolio</li>
</ul>
<p>Let&#8217;s get started today!</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/general/industry-knowledge/' rel='bookmark' title='Permanent Link: Industry Knowledge'>Industry Knowledge</a></li><li><a href='http://www.mikemeisner.com/general/website-maintenance/' rel='bookmark' title='Permanent Link: Website Maintenance'>Website Maintenance</a></li><li><a href='http://www.mikemeisner.com/notebook/local-business-marketing-introduction/' rel='bookmark' title='Permanent Link: Local Business Marketing &#8211; Introduction'>Local Business Marketing &#8211; Introduction</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/why-choose-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Industry Knowledge</title>
		<link>http://www.mikemeisner.com/general/industry-knowledge/</link>
		<comments>http://www.mikemeisner.com/general/industry-knowledge/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 00:00:34 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=651</guid>
		<description><![CDATA[I have been building websites for over six years and have a wide background, that includes experience in technical writing, customer support, marketing and communications and general project management. When combined, my skills allow me to bring a wide scope of experience and understanding to each project.


Related posts:Why Choose Me?A well rounded expertWebsite Maintenance


Related posts:<ol><li><a href='http://www.mikemeisner.com/general/why-choose-me/' rel='bookmark' title='Permanent Link: Why Choose Me?'>Why Choose Me?</a></li><li><a href='http://www.mikemeisner.com/general/a-well-rounded-expert/' rel='bookmark' title='Permanent Link: A well rounded expert'>A well rounded expert</a></li><li><a href='http://www.mikemeisner.com/general/website-maintenance/' rel='bookmark' title='Permanent Link: Website Maintenance'>Website Maintenance</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I have been building websites for over six years and have a wide background, that includes experience in technical writing, customer support, marketing and communications and general project management. When combined, my skills allow me to bring a wide scope of experience and understanding to each project.</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/general/why-choose-me/' rel='bookmark' title='Permanent Link: Why Choose Me?'>Why Choose Me?</a></li><li><a href='http://www.mikemeisner.com/general/a-well-rounded-expert/' rel='bookmark' title='Permanent Link: A well rounded expert'>A well rounded expert</a></li><li><a href='http://www.mikemeisner.com/general/website-maintenance/' rel='bookmark' title='Permanent Link: Website Maintenance'>Website Maintenance</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/industry-knowledge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gain Exposure</title>
		<link>http://www.mikemeisner.com/general/gain-exposure/</link>
		<comments>http://www.mikemeisner.com/general/gain-exposure/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 23:58:16 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=648</guid>
		<description><![CDATA[I can help you maximize your presence on the web. From social networks to ecommerce and blogs &#8211; I can handle them all. When combined and used effectively you will see a dramatic turn for the better. Your online presence directly correlates to your bottom line. Whether that be generating income, or displaying a gallery [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/javascript-image-galleries-roundup/' rel='bookmark' title='Permanent Link: Javascript image galleries roundup'>Javascript image galleries roundup</a></li><li><a href='http://www.mikemeisner.com/general/web-development/' rel='bookmark' title='Permanent Link: Web Development &#038; Ecommerce'>Web Development &#038; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/web-development-2/' rel='bookmark' title='Permanent Link: Web Development &amp; Ecommerce'>Web Development &amp; Ecommerce</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I can help you maximize your presence on the web. From social networks to ecommerce and blogs &#8211; I can handle them all. When combined and used effectively you will see a dramatic turn for the better. Your online presence directly correlates to your bottom line. Whether that be generating income, or displaying a gallery of artwork, I can make it happen.</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/javascript-image-galleries-roundup/' rel='bookmark' title='Permanent Link: Javascript image galleries roundup'>Javascript image galleries roundup</a></li><li><a href='http://www.mikemeisner.com/general/web-development/' rel='bookmark' title='Permanent Link: Web Development &#038; Ecommerce'>Web Development &#038; Ecommerce</a></li><li><a href='http://www.mikemeisner.com/general/web-development-2/' rel='bookmark' title='Permanent Link: Web Development &amp; Ecommerce'>Web Development &amp; Ecommerce</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/gain-exposure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot new jQuery Slider</title>
		<link>http://www.mikemeisner.com/general/hot-new-jquery-slider/</link>
		<comments>http://www.mikemeisner.com/general/hot-new-jquery-slider/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 18:09:52 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=479</guid>
		<description><![CDATA[I&#8217;m not a big fan of the other javascript libraries, so when someone comes along and creates a jQuery version of a popular rival&#8217;s plugin, I&#8217;m happy. That&#8217;s the case with the &#8220;s3Slider&#8221; plugin for jQuery. It&#8217;s super slick and reminiscent of Jondesign&#8217;s &#8220;smoothgallery&#8221;. I look forward to using this in future themes.
Check it out:
Visit [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/jquery-image-carousel-agile-carousel/' rel='bookmark' title='Permanent Link: jQuery image carousel &#8211; Agile Carousel'>jQuery image carousel &#8211; Agile Carousel</a></li><li><a href='http://www.mikemeisner.com/general/jquerys-flippable-and-flip/' rel='bookmark' title='Permanent Link: Two new jQuery plugins &#8211; flip and animate on hover'>Two new jQuery plugins &#8211; flip and animate on hover</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-featured-slider/' rel='bookmark' title='Permanent Link: Create a featured posts slider in Wordpress using jQuery'>Create a featured posts slider in Wordpress using jQuery</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not a big fan of the other javascript libraries, so when someone comes along and creates a jQuery version of a popular rival&#8217;s plugin, I&#8217;m happy. That&#8217;s the case with the &#8220;s3Slider&#8221; plugin for jQuery. It&#8217;s super slick and reminiscent of Jondesign&#8217;s &#8220;smoothgallery&#8221;. I look forward to using this in future themes.</p>
<p>Check it out:<br />
<a href="http://www.serie3.info/s3slider/index.php" class="plus">Visit the homepage</a><br />
<a href="http://www.serie3.info/s3slider/demonstration.html" class="plus">View the demonstration</a></p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/jquery-image-carousel-agile-carousel/' rel='bookmark' title='Permanent Link: jQuery image carousel &#8211; Agile Carousel'>jQuery image carousel &#8211; Agile Carousel</a></li><li><a href='http://www.mikemeisner.com/general/jquerys-flippable-and-flip/' rel='bookmark' title='Permanent Link: Two new jQuery plugins &#8211; flip and animate on hover'>Two new jQuery plugins &#8211; flip and animate on hover</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-featured-slider/' rel='bookmark' title='Permanent Link: Create a featured posts slider in Wordpress using jQuery'>Create a featured posts slider in Wordpress using jQuery</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/hot-new-jquery-slider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s guide to SEO</title>
		<link>http://www.mikemeisner.com/general/googles-guide-to-seo/</link>
		<comments>http://www.mikemeisner.com/general/googles-guide-to-seo/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 17:08:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=474</guid>
		<description><![CDATA[The Google team recently took some time to address a common question. How can I improve my search engine rankings? To wit they created several small, concise guides about search engine optimization for you to download. These guides are easy to understand, and include lots of images for us visual-minded folks. I suggest downloading and [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/general/googles-guide-to-seo-2/' rel='bookmark' title='Permanent Link: Google&#039;s guide to SEO'>Google&#039;s guide to SEO</a></li><li><a href='http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/' rel='bookmark' title='Permanent Link: 9 Essential WordPress SEO Plugins and Tips'>9 Essential WordPress SEO Plugins and Tips</a></li><li><a href='http://www.mikemeisner.com/notebook/use-googles-wonder-wheel-to-find-longtail-key-phrases/' rel='bookmark' title='Permanent Link: Use Google&#8217;s Wonder Wheel to Find Longtail Key Phrases'>Use Google&#8217;s Wonder Wheel to Find Longtail Key Phrases</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mikemeisner.com/wp-content/uploads/2008/11/google-pagerank.jpg" rel="lightbox[474]"><img src="http://www.mikemeisner.com/wp-content/uploads/2008/11/google-pagerank-150x150.jpg" alt="google-pagerank" title="google-pagerank" width="150" height="150" class="alignleft size-thumbnail wp-image-677" /></a>The Google team recently took some time to address a common question. How can I improve my search engine rankings? To wit they created several small, concise guides about search engine optimization for you to download. These guides are easy to understand, and include lots of images for us visual-minded folks. I suggest downloading and reading them over when you have a chance. Many of the techniques are already known, but the explanations and visuals about how and why they improve your search results help greatly. </p>
<p><a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html" class="plus">Google SEO guide</a></p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/general/googles-guide-to-seo-2/' rel='bookmark' title='Permanent Link: Google&#039;s guide to SEO'>Google&#039;s guide to SEO</a></li><li><a href='http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/' rel='bookmark' title='Permanent Link: 9 Essential WordPress SEO Plugins and Tips'>9 Essential WordPress SEO Plugins and Tips</a></li><li><a href='http://www.mikemeisner.com/notebook/use-googles-wonder-wheel-to-find-longtail-key-phrases/' rel='bookmark' title='Permanent Link: Use Google&#8217;s Wonder Wheel to Find Longtail Key Phrases'>Use Google&#8217;s Wonder Wheel to Find Longtail Key Phrases</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/googles-guide-to-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#039;s guide to SEO</title>
		<link>http://www.mikemeisner.com/general/googles-guide-to-seo-2/</link>
		<comments>http://www.mikemeisner.com/general/googles-guide-to-seo-2/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 17:08:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=474</guid>
		<description><![CDATA[The Google team recently took some time to address a common question. How can I improve my search engine rankings? To wit they created several small, concise guides about search engine optimization for you to download. These guides are easy to understand, and include lots of images for us visual-minded folks. I suggest downloading and [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/general/googles-guide-to-seo/' rel='bookmark' title='Permanent Link: Google&#8217;s guide to SEO'>Google&#8217;s guide to SEO</a></li><li><a href='http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/' rel='bookmark' title='Permanent Link: 9 Essential WordPress SEO Plugins and Tips'>9 Essential WordPress SEO Plugins and Tips</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link'>WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://localhost/myportfolio/wp-content/uploads/2009/09/google-pagerank.jpg" rel="lightbox[810]"><img src="http://www.mikemeisner.com/wp-content/uploads/2008/11/google-pagerank-150x150.jpg" alt="google-pagerank" title="google-pagerank" width="150" height="150" class="alignleft size-thumbnail wp-image-677" /></a>The Google team recently took some time to address a common question. How can I improve my search engine rankings? To wit they created several small, concise guides about search engine optimization for you to download. These guides are easy to understand, and include lots of images for us visual-minded folks. I suggest downloading and reading them over when you have a chance. Many of the techniques are already known, but the explanations and visuals about how and why they improve your search results help greatly.</p>
<p><a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html" class="plus">Google SEO guide</a></p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/general/googles-guide-to-seo/' rel='bookmark' title='Permanent Link: Google&#8217;s guide to SEO'>Google&#8217;s guide to SEO</a></li><li><a href='http://www.mikemeisner.com/general/8-essential-wordpress-seo-plugins-and-tips/' rel='bookmark' title='Permanent Link: 9 Essential WordPress SEO Plugins and Tips'>9 Essential WordPress SEO Plugins and Tips</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-seo-trick-optimize-read-more-link/' rel='bookmark' title='Permanent Link: WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link'>WordPress SEO Trick &#8211; Optimize &#8220;Read More&#8221; Link</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/googles-guide-to-seo-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create multiple headers in Wordpress</title>
		<link>http://www.mikemeisner.com/general/create-multiple-headers-in-wordpress/</link>
		<comments>http://www.mikemeisner.com/general/create-multiple-headers-in-wordpress/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 16:08:38 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mikemeisner.com/?p=467</guid>
		<description><![CDATA[The Problem
I&#8217;ve enounterd the need for this on several projects and thought it might help. In this case, I didn&#8217;t want the featured slider to appear on every page, as it was located in the header. You too, may want to display page-specific headers based on certain conditions. Well, it&#8217;s not that hard with the [...]


Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/create-multiple-single-page-templates-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple single page templates by category in Wordpress'>Create multiple single page templates by category in Wordpress</a></li><li><a href='http://www.mikemeisner.com/general/one-category-page-multiple-headings/' rel='bookmark' title='Permanent Link: One category page, multiple headings'>One category page, multiple headings</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-featured-slider/' rel='bookmark' title='Permanent Link: Create a featured posts slider in Wordpress using jQuery'>Create a featured posts slider in Wordpress using jQuery</a></li></ol>]]></description>
			<content:encoded><![CDATA[<h3>The Problem</h3>
<p>I&#8217;ve enounterd the need for this on several projects and thought it might help. In this case, I didn&#8217;t want the featured slider to appear on every page, as it was located in the header. You too, may want to display page-specific headers based on certain conditions. Well, it&#8217;s not that hard with the &#8220;if&#8221; and &#8220;else&#8221; statements. Get ready to learn some very basic PHP!</p>
<p><span id="more-467"></span></p>
<h3>The Fix</h3>
<p>First, open your header.php file and copy and paste its contents into a new file. Name this new file &#8220;headerwithnofeaturedslider.php&#8221; or whatever is more semantic to you. Make sure you remove the offending featured slider portion (or include/remove what you want from this version of the header).  Save and upload this new header file to your site. </p>
<p>Now you have two headers; you could easily make another, and another, and so on. Next we need to call them to appear on the pages in Wordpress. In my case, I wanted to include the &#8220;headerslider.php&#8221; only on my home page and a unique header on my blog Every other page would load the normal header.  So in my index.php file I replace the normal header tag with to include the new header file we created, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'slider'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerslider.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
}
elseif (is_page('blog')){
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerblog.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
}
else {
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerdefault.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
}
?&gt;</pre></div></div>

<p>What we have here is a code snippet that will load any of three headers depending on the page template used. </p>
<p>Let&#8217;s say that you wanted to load a certain header based on categories or tags even. You could do something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Copywriting Basics'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerslider.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
 <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span>is_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Copywriting Creativity'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerblog.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
 ?&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> 
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/headerdefault.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>All other pages will load the regular header. As you can see, it&#8217;s very simple. The most involving part would be changing your headers.</p>


<p>Related posts:<ol><li><a href='http://www.mikemeisner.com/notebook/create-multiple-single-page-templates-in-wordpress/' rel='bookmark' title='Permanent Link: Create multiple single page templates by category in Wordpress'>Create multiple single page templates by category in Wordpress</a></li><li><a href='http://www.mikemeisner.com/general/one-category-page-multiple-headings/' rel='bookmark' title='Permanent Link: One category page, multiple headings'>One category page, multiple headings</a></li><li><a href='http://www.mikemeisner.com/notebook/wordpress-featured-slider/' rel='bookmark' title='Permanent Link: Create a featured posts slider in Wordpress using jQuery'>Create a featured posts slider in Wordpress using jQuery</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikemeisner.com/general/create-multiple-headers-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
