<?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>CyberCoded &#187; Wordpress How To</title>
	<atom:link href="http://www.cybercoded.net/info/wordpress-how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybercoded.net</link>
	<description>Trying to help others with their Wordpress, PHP and other Web issues.</description>
	<lastBuildDate>Sun, 05 Feb 2012 09:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Static HTML to WordPress Conversion Case Study</title>
		<link>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/</link>
		<comments>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 13:49:09 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1321</guid>
		<description><![CDATA[Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options. I used my holiday time [...]]]></description>
			<content:encoded><![CDATA[<p>Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options.</p>
<p>I used my holiday time to convert one of my own static sites. I wanted to use it as a case study in procedure and time. The site I converted was my Scripts and Database site, <a href="http://www.cybercoded.com/" target="new">CyberCoded.com</a>. This is one of my older sites and I have been too busy to convert it so I continued to manually add pages as needed.</p>
<p>I have about 10 hours invested in the whole process to convert this site. The bulk of the time is in the custom coding of a WordPress Theme from scratch to match an older site. There were 12 pages when I started and as some of the pages had different extensions I decided to convert the site using my favorite WordPress permalink structure and then redirect the old pages.</p>
<p>I used my <a href="http://theme1.cybercoded.net/" target="new">Blank WordPress Theme</a> so that I could start with a clean slate and match the design to the old site.</p>
<p>Here are the steps I took.</p>
<ol>
<li>Installed WordPress in a Sub Folder
<ul>
<li>Set Privacy setting to OFF while I developed the site in a sub folder.</li>
<li>Modified the permalink to my favorite which is /%postname%/</li>
</ul>
</li>
<li>Installed the Blank theme in the WordPress Themes folder.
<ul>
<li>I used FTP to upload the files into a new theme folder in WordPress.</li>
</ul>
</li>
<li>Copied and matched elements from the old Style.css file into the WordPress Style.css
<ul>
<li>The blank theme has an empty CSS file.</li>
<li>The Body and Links were the only elements called out in the old CSS file.</li>
<li>Added Wrapper, Content, Header and Footer Divs to CSS.</li>
</ul>
</li>
<li>Copied the Index.php file to home.php so I could have a custom Home page that would match the old page.
<ul>
<li>Simply copying the file like this makes a new home page with the home.php file.</li>
</ul>
</li>
<li>Modified the WordPress code in the Home page to show each category and posts as lists.
<ul>
<li>Stripped out the common WordPress Loop</li>
<li>Created new code that loops through the categories and list each post per category.</li>
<li>Set the Category to sort in Descending order.</li>
<li>Set the Post titles to sort Title in ascending order</li>
</ul>
</li>
<li>Created an Analytics.php file in the WordPress Theme to use throughout the site.
<ul>
<li>Retrieved the code from Google to use for analytics.php</li>
</ul>
</li>
<li>Created a Header.php file within the WordPress Theme to add common header elements.
<ul>
<li>Modified the Title so that it would be SEO friendly, very similar to most popular SEO plugins.</li>
<li>Added a call to analytics.php file</li>
</ul>
</li>
<li>Created a footer.php file in WordPress to add a common footer.
<ul>
<li>Used the code from the old static footer file for contact and info.</li>
</ul>
</li>
<li>Created Single.php page
<ul>
<li>Added a <a href="http://twitter.com/about/resources/tweetbutton" target="new">Tweet This button from Twitter</a>.</li>
</ul>
</li>
<li>Created my Categories to match old site.
<ul>
<li>The old site had headers for each item type which I converted to Categories.</li>
</ul>
</li>
<li>Copied each page from the old site into Textpad and removed any code that would interfere with WordPress.</li>
<li>Pasted each page into WordPress as a Post.</li>
<li>Created Tag Page.
<ul>
<li>Tag page list the excerpt for each Post that is tagged.</li>
</ul>
</li>
<li>Created <a href="http://www.cybercoded.com/fdlhfakldh">custom 404 page</a>.
<ul>
<li>The 404 page shows a tag cloud to visitors.</li>
</ul>
</li>
<li>Created Search page.
<ul>
<li>Search page only shows title for a matched post.</li>
</ul>
</li>
<li>Widgetized and added a sidebar.
<ul>
<li>Create and set widgets in the functions.php file.</li>
<li>Add sidebar.php and corresponding code to use widgets.</li>
<li>Added a <a href="http://developers.facebook.com/docs/reference/plugins/like" target="new">Facebook Like button</a>.</li>
<li>Added RSS Button and link.</li>
</ul>
</li>
<li>Copied the index.php from the WordPress sub folder to the root and modified the code to use WordPress from the Sub Folder.</li>
<li>Changed the Site Address within WordPress Admin to set the site in the root while leaving WordPress installed in the sub folder.</li>
<li>Redirected the old pages to the new WordPress pages using PHP header calls.</li>
<li>Installed and setup XML Sitemap Generator for WordPress Plugin</li>
</ol>
<p>ALL DONE !</p>
<p>I copied the old Index file so we can see a before and after look.</p>
<p><a href="http://www.cybercoded.com/index2.php" target="new">Original Page</a> versus <a href="http://www.cybercoded.com" target="new">New WordPress Site</a>.</p>
<p>Most of the time was in the Theme setup. Each page took about 5 minutes to convert the content to a WordPress Post.</p>
<p>12 Pages, 10 hours</p>
<p>Think I will send my wife a bill and see if it gets paid, lol&#8230;</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Convert HTML to WordPress</title>
		<link>http://www.cybercoded.net/convert-html-to-wordpress/</link>
		<comments>http://www.cybercoded.net/convert-html-to-wordpress/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 14:07:38 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Static Web Site]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Conversion]]></category>
		<category><![CDATA[Wordpress Hierarchy]]></category>
		<category><![CDATA[Wordpress How To]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1263</guid>
		<description><![CDATA[This is the second post I have written on this topic, the first post was Convert Static HTML Site to WordPress Easily. In that first post I covered a very simple way to convert a static HTML site to WordPress. After almost 2 years of answering questions on that post I thought it was time [...]]]></description>
			<content:encoded><![CDATA[<p>This is the second post I have written on this topic, the first post was <a href="http://www.cybercoded.net/convert-static-html-site-to-wordpress-easily/">Convert Static HTML Site to WordPress Easily</a>. In that first post I covered a very simple way to convert a static HTML site to WordPress.</p>
<p>After almost 2 years of answering questions on that post I thought it was time to discuss the issue again.</p>
<p>I have done a dozen or so conversions since that post and I have found that some sites really need to take a fresh start approach to get the best result. The main reason for this is that a lot of older HTML sites are built with outdated techniques and WordPress has made some great advancements.</p>
<p>On these sites I create a sub folder for the WordPress install, such as /wordpress. This gives us designated area to work and learn WordPress without interferring with the original design. The hardest task may be getting a theme to match your original design, but I would suggest taking this time to update your original design. There are so many good WordPress Themes this should not be a problem. Once your theme is in place you can copy and paste your orginal content to the new install matching the page names. Depending on your original file extensions you may need to set the permalinks in WordPress.</p>
<p>Once this development is complete it is easy to change the Site address (URL) in WordPress to show the new site in the root. (Make sure to backup the original first!) <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">Here is the link</a> from the WordPress Admin panel that explains this.</p>
<p>If you need to learn WordPress and want to take a little time without being pressured to get the new site in place this is the best option I have found.</p>
<p><strong>Yes, I do conversions for others. If you would like a quote, simply send me a link to your site and contact information using my <a href="http://www.cybercoded.net/contact-me/">Contact Form</a>.</strong></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/convert-html-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How To Use WordPress</title>
		<link>http://www.cybercoded.net/how-to-use-wordpress/</link>
		<comments>http://www.cybercoded.net/how-to-use-wordpress/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:38:30 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Theme]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=916</guid>
		<description><![CDATA[This is one of my favorite questions people ask. The answer is pretty much infinite. WordPress can be used in so many ways. Whether you need a standard blog platform or an easy way to do an old fashioned website, WordPress can deliver. Between the wealth of WordPress Themes, Plugins and Widgets available you can mix [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of my favorite questions people ask. The answer is pretty much infinite.</p>
<p>WordPress can be used in so many ways. Whether you need a standard blog platform or an easy way to do an old fashioned website, WordPress can deliver. Between the wealth of WordPress Themes, Plugins and Widgets available you can mix and match the tools to quickly create a website or blog. It is also a great way to Park a domain while you are developing the site, you can setup a home page, with enough information to get indexed in the search engines so that when the site goes live it is already indexed for the main topic.</p>
<p>And to clarify, I am talking about self hosted WordPress, not hosting on WordPress.com. Using WordPress.com to host a blog is certainly an easy way to get started. Personally I just can not see giving away an opportunity to build your own site and credibility in the search engines and social networks. Yes, that means there is a cost, but the cost is so low these days, if you are gonna step out and create something, make it yours.</p>
<p>Here a few links to tutorials and information on How To Use WordPress.</p>
<p>WordPress Tutorial &#8211; How to Install and Manage WordPress <a href="http://bit.ly/6qPO58" target="_self">http://bit.ly/6qPO58</a> &#8211; Source <a href="http://www.siteground.com" target="_blank">http://www.siteground.com</a></p>
<p>Getting Started with WordPress « WordPress Codex <a href="http://bit.ly/5EZhRR" target="_blank">http://bit.ly/5EZhRR</a> &#8211; Source <a href="http://codex.wordpress.org" target="_blank">http://codex.wordpress.org</a></p>
<p>How to use WordPress as a Truly Customized CMS <a href="http://bit.ly/81U26Y" target="_blank">http://bit.ly/81U26Y</a> &#8211; Source <a href="http://www.idesignstudios.com" target="_blank">http://www.idesignstudios.com</a></p>
<p>Convert Static HTML Site to WordPress Easily <a href="http://bit.ly/8RKj34" target="_blank">http://bit.ly/8RKj34</a> &#8211; Source <a href="http://www.cybercoded.net" target="_blank">http://www.cybercoded.net</a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/how-to-use-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Threaded Comments</title>
		<link>http://www.cybercoded.net/wordpress-threaded-comments/</link>
		<comments>http://www.cybercoded.net/wordpress-threaded-comments/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 14:47:22 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Worpress Threaded Comments]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=793</guid>
		<description><![CDATA[I have been needing to change my comments to Threaded Comments for some time. I finally took the time to do this, and thought I would share these simple steps to accomplish Threaded Comments using the latest standard WordPress system without any plugins. The one thing you need before you start is a copy of [...]]]></description>
			<content:encoded><![CDATA[<p>I have been needing to change my comments to Threaded Comments for some time. I finally took the time to do this, and thought I would share these simple steps to accomplish Threaded Comments using the latest standard WordPress system without any plugins.</p>
<p>The one thing you need before you start is a copy of WordPress 2.7+ so you can copy some code. Just a little side tip here. Even though most of my sites and clients have one button install of WordPress, I keep a copy of each version that is released on a thumb drive with my other web stuff so I always have it handy. I also sync that thumb drive up to a hard drive in my office for backup!</p>
<p>Here are the steps to take to convert your comments to threaded comments as they appear here on my site.</p>
<ul>
<li>Copy \wp-content\themes\default\comments.php from WordPress 2.7+</li>
<li>Copy \wp-content\themes\default\comments-popup.php from WordPress 2.7+</li>
<li>Copy code from \wp-content\themes\default\header.php, and place in your header file.  &lt;?php if ( is_singular() ) wp_enqueue_script( &#8216;comment-reply&#8217; ); ?&gt;</li>
<li>Copy the Updated styling code from this great article by <a style="text-decoration: none;" title="Chris Harrison" href="http://cdharrison.com/2008/12/threaded-comments/" target="_blank">Chris Harrison</a></li>
</ul>
<div>I modified 2 lines of code in the stlyesheet once I copied it over from Chris Harrisons&#8217; Example. I did not like the word &#8220;says&#8221; showing up, so I turned it off, and I changed the meta link to the comment to match the rest of the site.</div>
<p>Turn off  &#8221;says&#8221; :</p>
<div>
<ul>
<li>From : ol.commentlist li div.vcard span.says {}</li>
<li>To: ol.commentlist li div.vcard span.says {display:none;}</li>
</ul>
</div>
<div>Change Meta link color:</div>
<div>
<ul>
<li>From: ol.commentlist li div.comment-meta a { color:#ccc; }</li>
<li>To: ol.commentlist li div.comment-meta a { color:#003366; }</li>
</ul>
</div>
<p>That&#8217;s it, about a 5 minute process to convert to WP Threaded Comments on a WordPress blog. Pretty painless too. Big thanks to <a title="Chris Harrison" href="http://cdharrison.com/2008/12/threaded-comments/" target="_blank">Chris Harrison</a> for his excellent post on styling Threaded comments!</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/wordpress-threaded-comments/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Display Ads Only On Selected WordPress Posts</title>
		<link>http://www.cybercoded.net/display-ads-only-on-selected-wordpress-posts/</link>
		<comments>http://www.cybercoded.net/display-ads-only-on-selected-wordpress-posts/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:26:13 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Custom Fields]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Programming]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=517</guid>
		<description><![CDATA[Every blog is a little different and has it&#8217;s own unique requirements. On some blogs we may want to place an ad on every post, on others we may not. A good example is this blog. There are a few posts that I make where I feel an ad is useful and lends itself to [...]]]></description>
			<content:encoded><![CDATA[<p>Every blog is a little different and has it&#8217;s own unique requirements. On some blogs we may want to place an ad on every post, on others we may not. A good example is this blog. There are a few posts that I make where I feel an ad is useful and lends itself to have a relevant contextual ad placed on the post.</p>
<p>There is a very simple way to handle this issue.</p>
<p>Yes, there are plugins available that handle all kinds of issues with ads, however, I just wanted an easy way of dealing with it, so here is what I came up with.</p>
<p>Two lines of code and using Custom Fields does the trick,</p>
<p>First I wrap my ads on the single page with this code.</p>
<p>&lt;?php<br />
if (get_post_meta($post-&gt;ID, &#8216;ads&#8217;, true)) {<br />
?&gt;</p>
<p>AD CODE HERE</p>
<p>&lt;?php<br />
}<br />
?&gt;</p>
<p>This will cause ads to only show when there is a custom field named &#8220;ads&#8221; with a value of anything but 0. And once you have inserted the custom field you never have to add it again, just apply a value, and since this is a simple boolean expression, any value except 0 will cause the ads to display.</p>
<p>Examples:</p>
<p>No Ad : <a href="http://www.cybercoded.net/weekly-cybercoder-tweets-for-2008-11-30/">Weekly CyberCoder Tweets for 2008-11-30</a></p>
<p>With Ad : <a href="http://www.cybercoded.net/online-residual-income/">Online Residual Income</a></p>
<p>You could go the other way and have the default show the ad, or include a couple statements to change the ad location, color or anything else you could think of. This is just a simple solution for a specific need and I hope it helps someone.</p>
<p>If you want more options using basically the same technique I would highly recommend this tutorial, <a title="How To Automatically Disable Ads On Selected Posts In WordPress" href="http://www.puttingblogsfirst.com/how-to-automatically-disable-ads-on-selected-posts-in-wordpress" target="_blank">How To Automatically Disable Ads On Selected Posts In WordPress</a>.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/display-ads-only-on-selected-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CyberCoder WordPress Themes</title>
		<link>http://www.cybercoded.net/cybercoder-wordpress-themes/</link>
		<comments>http://www.cybercoded.net/cybercoder-wordpress-themes/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 12:30:51 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Basic Wordpress Theme]]></category>
		<category><![CDATA[CyberCoder Wordpress Theme]]></category>
		<category><![CDATA[Empty Wordpress Theme]]></category>
		<category><![CDATA[Minimal Wordpress Theme]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Programmer]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/?p=190</guid>
		<description><![CDATA[I finally got around to getting these WordPress Themes cleaned up, organized and uploaded. The first theme is just an Empty WordPress Theme. This may seem a little silly, but you would be surprised at how many people want this to learn from. The second theme is a Minimal WordPress Theme that may not be [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to getting these WordPress Themes cleaned up, organized and uploaded.</p>
<p>The first theme is just an <a href="http://www.cybercoded.net/empty-wordpress-theme-download/">Empty WordPress Theme</a>. This may seem a little silly, but you would be surprised at how many people want this to learn from.</p>
<p>The second theme is a <a href="http://www.cybercoded.net/minimal-wordpress-theme-download/">Minimal WordPress Theme</a> that may not be the most beautiful theme you can find, but it is very functional and does very well on Niche sites where the primary focus is driving traffic from search engines and converting that traffic into income.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/cybercoder-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XML Parsing Error in WordPress</title>
		<link>http://www.cybercoded.net/xml-parsing-error-wordpress/</link>
		<comments>http://www.cybercoded.net/xml-parsing-error-wordpress/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 19:09:58 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Automatic Plugin Update]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Programmer]]></category>
		<category><![CDATA[Wordpress Upgrade]]></category>
		<category><![CDATA[XML Parsing Error]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=223</guid>
		<description><![CDATA[I have posted about this problem before, however, since the WordPress Automatic Plugin Updates (WPAU) have been working there is a new culprit for this bug. It appears to be somewhat of a random bug that occurs when you run an automatic upgrade on a plugin. To catch this bug before it causes an unexpected [...]]]></description>
			<content:encoded><![CDATA[<p>I have <a href="http://www.cybercoded.net/wordpress-xml-parsing-error/">posted about this problem before</a>, however, since the WordPress Automatic Plugin Updates (WPAU) have been working there is a new culprit for this bug. It appears to be somewhat of a random bug that occurs when you run an automatic upgrade on a plugin.</p>
<p>To catch this bug before it causes an unexpected problem you should check each plugin immediately after running an upgrade. Simply click the Edit button next to Deactivate, scroll to the very bottom of the file and make sure there is no whitespace at the end of the file. If there is whitespace, simply delete it, and save the plugin. <a href="http://www.cybercoded.net/wordpress-xml-parsing-error/">See example images</a></p>
<p>If you do not check your plugins this bug can become a real pain. The main reason is that once it occurs you have no idea if it is in the WordPress PHP, Plugins or Theme files.</p>
<p>Reference Link : <a href="http://wordpress.org/search/xml+parsing+error?forums=1">Search › xml parsing error</a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/xml-parsing-error-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Post Via Email On WordPress Blog</title>
		<link>http://www.cybercoded.net/post-via-email-on-wordpress-blog/</link>
		<comments>http://www.cybercoded.net/post-via-email-on-wordpress-blog/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 19:01:01 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Define Blogging]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/post-via-email-on-wordpress-blog.html</guid>
		<description><![CDATA[I have always been interested in this aspect of blogging but never took the time to slow down long enough to check it out. This post is being accomplished using the Post via Email options in WordPress 2.51 I am toying with lots of ideas where this could be very beneficial and I plan on [...]]]></description>
			<content:encoded><![CDATA[<p>I have always been interested in this aspect of blogging but never took the time to slow down long enough to check it out.</p>
<p>This post is being accomplished using the Post via Email options in WordPress 2.51</p>
<p>I am toying with lots of ideas where this could be very beneficial and I<br />
plan on writing up a detailed post on how to set this up easily on a<br />
Wordpress blog.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/post-via-email-on-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Upgrade</title>
		<link>http://www.cybercoded.net/wordpress-25-upgrade/</link>
		<comments>http://www.cybercoded.net/wordpress-25-upgrade/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 20:55:29 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Tag Page]]></category>
		<category><![CDATA[Wordpress Upgrade]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/wordpress-25-upgrade.html</guid>
		<description><![CDATA[I just ran the my first set of WordPress 2.5 upgrades. The first upgrade was to a very small blog with only 2 plugins, the second was to a larger blog that had several plugins installed. Both upgrades went smooth as silk. The WordPress 2.5 dashboard and layout are totally different from anything WordPress has [...]]]></description>
			<content:encoded><![CDATA[<p>I just ran the my first set of WordPress 2.5 upgrades.</p>
<p>The first upgrade was to a very small blog with only 2 plugins, the second was to a larger blog that had several plugins installed. Both upgrades went smooth as silk.</p>
<p>The WordPress 2.5 dashboard and layout are totally different from anything WordPress has released before and it will take some getting used to. I did use the upgrade automatically option on a couple of the plugins and everything worked as expected.</p>
<p>One new feature I really like is the Tag management. As an example I had a tag that should have had a word capitalized that was not. I was able to modify the tag display with a couple clicks and then verify that it was corrected in my tag cloud.</p>
<p>So far WordPress 2.5 looks great and I will follow up with more data as I upgrade the rest of my blogs.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/wordpress-25-upgrade/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Tag Template</title>
		<link>http://www.cybercoded.net/wordpress-tag-template/</link>
		<comments>http://www.cybercoded.net/wordpress-tag-template/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 13:54:57 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress Hierarchy]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Page Template]]></category>
		<category><![CDATA[Wordpress Tag Page]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/wordpress-tag-template.html</guid>
		<description><![CDATA[Using a tag page for marketing is something that can really help your ROI by using the WordPress Tag Template and creating a very specific page design for any tag. Based on the WordPress Template Hierarchy it is very easy to create an individual page for a tag. If you look at a Tag Cloud [...]]]></description>
			<content:encoded><![CDATA[<p>Using a tag page for marketing is something that can really help your ROI by using the WordPress Tag Template and creating a very specific page design for any tag.</p>
<p>Based on the WordPress Template Hierarchy it is very easy to create an individual page for a tag. If you look at a Tag Cloud on a site you will notice that there are always tags that get mentioned more than others. These tags should represent the most popular topics for a site and taking advantage of the WordPress Tag Template can result in a focused marketing campaign for these given tags.</p>
<p>The WordPress Tag Template flows like this :</p>
<ol>
<li>tag-slug.php</li>
<li>tag.php</li>
<li>archive.php</li>
<li>index.php</li>
</ol>
<p>The first template is the key here. If you have a tag you would like to create a custom page for you can copy your tag.php to a new file named tag-slug.php and then modify that page to fit that tag.</p>
<p>Here is an example:</p>
<p>On <a href="http://www.musicramble.com/" title="Music Ramble" target="_blank">MusicRamble.com</a> we focus on Classic Rock music. The general tag page lists excerpts from articles for the given tag. Examples of the basic tag pages are <a href="http://www.musicramble.com/tag/george-harrison/" title="George Harrison" target="_blank">George Harrison</a> and <a href="http://www.musicramble.com/tag/steve-winwood/" title="Steve Winwood" target="_blank">Steve Winwood</a>. If you compare those two pages you will notice they are basically the same design.</p>
<p>Now look at <a href="http://www.musicramble.com/tag/eric-clapton/" title="Eric Clapton" target="_blank">Eric Clapton</a>. Notice the sidebars, they have been customized specifically for Eric Clapton. The left sidebar is loaded with products related specifically to Clapton. This has resulted in an increase of Amazon sales for Eric Clapton.</p>
<p>Here is how it was accomplished.</p>
<ol>
<li>Copied the tag.php to tag-eric-clapton.php</li>
<li>Removed the call to the sidebars,  get_sidebar()</li>
<li>Copied the contents of the sidebar.php file</li>
<li>Placed the copied code where the previous call to get_sidebars() was.</li>
<li>Moved all items in left sidebar to right sidebar</li>
<li>Placed the product links in the left sidebar.</li>
</ol>
<p>The resulting custom tag page shows up in the file list on the WordPress -&gt; Presentation -&gt; Theme Editor menu so it is easy to work on. At any point if we decided not to use this page, all we have to do is delete it and the default tag.php will once again be used for this tag.</p>
<p>Are you getting the most out the WordPress Tag Template?</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/wordpress-tag-template/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

