<?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>Austin SEO Guy &#187; Business Blogging</title>
	<atom:link href="http://www.austinseoguy.com/category/business-blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.austinseoguy.com</link>
	<description>Small Business Internet Marketing Advice</description>
	<lastBuildDate>Wed, 11 Aug 2010 22:18:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How do I customize my WordPress theme?</title>
		<link>http://www.austinseoguy.com/customize-wordpress-theme/</link>
		<comments>http://www.austinseoguy.com/customize-wordpress-theme/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:05:14 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Business Blogging]]></category>

		<guid isPermaLink="false">http://www.austinseoguy.com/?p=130</guid>
		<description><![CDATA[Question: &#8220;I have installed a new theme for my WordPress blog. I need to make a lot of changes to the sidebar menu and other areas, to make it look how I want. Is this hard? How do I customize my WordPress theme without breaking the whole thing?&#8221;
One of the benefits of using WordPress is [...]]]></description>
			<content:encoded><![CDATA[<p><em>Question:</em> &#8220;I have installed a new theme for my WordPress blog. I need to make a lot of changes to the sidebar menu and other areas, to make it look how I want. Is this hard? How do I customize my WordPress theme without breaking the whole thing?&#8221;</p>
<p>One of the benefits of using WordPress is the flexibility it provides. The coding that controls the design is broken up into segments. This means you can easily adjust certain aspects of the blog, such as the sidebar or footer, without affecting other areas. You can also make certain changes to the main-page template that won&#8217;t affect the individual blog posts, and vice-versa. Pretty handy. Because of this segmentation, you can customize a WordPress theme more so than a Blogger template (another popular blogging program).</p>
<p>Of course, it helps to understand HTML and PHP coding. Your WordPress theme is mainly built around these two types of web code. So if you want to customize some aspect of the theme, you&#8217;ll need to be familiar with HTML /XHTML and PHP. Are you familiar with these things? If so, you simply need to find your way to the &#8220;Editor&#8221; section of your control panel, and edit the appropriate file for the area in question (header, footer, sidebar, etc.). If you&#8217;re not familiar with HTML or PHP, you&#8217;ll probably need to get help from someone who is. It really depends on what you&#8217;re trying to customize, within the theme.</p>
<h2>The Parts of a WordPress Theme</h2>
<p>See the image to the right, down below? This is a snapshot I took of the theme files within the WordPress interface. These are the files you would need to change in order to customize the appearance of your blog. To reach them, you would simply log in to your WordPress program and then select &#8220;Appearance&#8221; &gt;&gt; &#8220;Editor&#8221; from the left-hand menu. After that, you&#8217;ll see something similar to the image below.</p>
<p><img style="border:solid 1px gray; float:right; margin:0 0 5px 8px;" title="WordPress theme editor" src="http://www.austinseoguy.com/wp-content/uploads/2010/02/Picture-1.png" alt="A snapshot of the WordPress theme editor" /></p>
<p>The types and names of files that show up will vary, depending on the WordPress blog theme you are using. Some themes use a basic structure, and therefore don&#8217;t require many template files. Others are more complex, and require more files to support that complexity.</p>
<p>In the image to the right, you&#8217;re seeing the following items:</p>
<ul>
<li><em><strong>404 Template</strong></em> &#8212; You probably know this better as &#8220;Page Not Found.&#8221; If somebody searches for a page on my blog that does not exist (or has been deleted), they will see my <a href="http://codex.wordpress.org/Creating_an_Error_404_Page" target="_blank">404 page</a>. I can change the message they see by customizing this part of my WordPress theme.</li>
<li><em><strong>Comments </strong></em>&#8211; This one is self-explanatory. It controls the look and feel of the comments section of the blog.</li>
<li><em><strong>Footer and Header</strong></em> &#8212; These are also pretty straightforward. This is the coding that makes up the top and bottom of your site.</li>
<li><em><strong>Main Index</strong></em> &#8212; Any changes you make here will only apply to the main / home page. In most cases, at least.</li>
<li><em><strong>Page Template</strong></em> &#8212; This controls the appearance and structure of your <a href="http://codex.wordpress.org/Pages" target="_blank">pages</a>.</li>
<li><em><strong>Sidebar</strong></em> &#8212; This is the area you were asking about. If you want to customize the sidebar of your WordPress theme, you would do it through this file.</li>
<li><em><strong>Single Post</strong></em> &#8212; This controls the actual posts / entries of your blog.</li>
<li><em><strong>Stylesheet </strong></em>&#8211; Here&#8217;s another important file. If you want to customize the appearance of common elements (like the fonts, colors and overall layout), you would need adjust your stylesheet.</li>
</ul>
<h2>Before You Customize Anything&#8230;</h2>
<p>You should always save a copy of each file before changing it. That way, you can always put the original code back in place if you &#8220;break&#8221; something. I can&#8217;t stress this enough. Save the original first, and <em>then</em> make changes to it. You can do this in one of two ways. You can copy the code from the file in question, and then paste it into a text file. Or you can use an FTP tool to download the file in question from your hosting account, and save it on your computer. Either way, you need to have a backup <em>before</em> you try to customize a WordPresss blog with the theme editor.</p>
<p>I would also recommend making one change at a time, and then viewing the blog to see how it affected the design. It&#8217;s a lot easier to undo a single mistake than a dozen of them. This is also a good way to become more familiar with the inner workings of your blogging program and design files.</p>
<p>This article answers the question: <em>How do I customize my WordPress theme design?</em> If you found this article helpful, be sure to bookmark this site for future reference. There are many more blogging tips coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austinseoguy.com/customize-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Increase Traffic to a Blog</title>
		<link>http://www.austinseoguy.com/how-to-increase-traffic-to-a-blog/</link>
		<comments>http://www.austinseoguy.com/how-to-increase-traffic-to-a-blog/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 18:44:16 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Business Blogging]]></category>

		<guid isPermaLink="false">http://www.austinseoguy.com/?p=124</guid>
		<description><![CDATA[Question: &#8220;I have a new business blog that nobody knows about. How can I increase traffic to my blog, in order to get more customers?&#8221;
If you asked an Internet marketing company (which I&#8217;m not), they would tell you about all kinds of &#8220;secret&#8221; techniques for boosting your traffic levels. In truth, there&#8217;s nothing secret about [...]]]></description>
			<content:encoded><![CDATA[<p><em>Question:</em> &#8220;I have a new business blog that nobody knows about. How can I increase traffic to my blog, in order to get more customers?&#8221;</p>
<p>If you asked an Internet marketing company (which I&#8217;m not), they would tell you about all kinds of &#8220;secret&#8221; techniques for boosting your traffic levels. In truth, there&#8217;s nothing secret about the process at all. Do you want to know the <em>one thing</em> that will increase blog traffic, more than anything else? Here it is. Prepare to be amazed&#8230;</p>
<p><em><strong>Create a high-quality blog that&#8217;s worth visiting. </strong></em></p>
<p>If you can do this, everything else will take care of itself. Here&#8217;s what I mean. Let&#8217;s talk about the different ways people can find you online. Most people will reach your site in one of three ways:</p>
<ol>
<li>They will come from another site that is linking to you.</li>
<li>They will find you through the search engines.</li>
<li>They will visit your blog directly, by typing the URL / web address.</li>
</ol>
<p>If you publish great information on a regular basis, you will increase traffic through all three of these paths. The more useful your blog is, the more people who will link to it. This helps you with items #1 and #2 above. The steady acquisition of inbound links (from other sites) will improve your &#8220;site referral&#8221; traffic as well as your search engine rankings. As for item #3 above, people will remember your blog and revisit often if they find it useful or engaging in some way.</p>
<p>Here&#8217;s the bottom line. There are millions of blogs online today. Literally. So launching a new one is similar to putting another grain of sand on a beach. If you want to attract links, boost your search engine rankings, and increase traffic to your blog, you have to develop quality content. Everything else is secondary to this.</p>
<h2>More Tips for Blog Traffic</h2>
<p>This blog is just a hobby of mine. So I&#8217;m not concerned with how it ranks in the search engines, or how many people link to it. But I <em>do</em> put a lot of effort into my network of real estate blogs, and I&#8217;m very concerned with the traffic they receive. Here is how I increase blog traffic to those websites:</p>
<ul>
<li>I publish often. Quality of content is most important, but quantity helps too. I post at least one article per day on my other blogs. This gives people a reason to come back. It also makes those websites serve as valuable resources, which encourages other webmasters to link to them.</li>
<li>I create useful, in-depth information. The Internet is overcrowded with &#8220;puff&#8221; pieces. These are articles people write just for search engine visibility. You&#8217;ve probably encountered this kind of content online. It doesn&#8217;t say anything specific, and it&#8217;s not very useful. It&#8217;s just full of puffery. Nobody will link to an article like that, and nobody will remember it either.</li>
<li>I do plenty of audience research. The best thing you can do to attract a target audience is to find out what interest them. You can use keyword research tools like this one at Google to generate topic ideas. You can also visit web forums related to your industry to see which topics are generating the most buzz. Talking directly to your customers / readers certainly helps too. The more you can learn about your audience, the better you serve them with useful information.</li>
<li>I seek feedback constantly. About once a week, I check my website analytics to see which pages / articles are generating the most traffic. This helps me understand what interests my audience the most. I also check my backlinks (links from other websites to mine) to see what pages are attracting the most links. It only makes sense to create more of these pages.</li>
<li>I create a lot of lists and step-by-step tutorials. These are helpful to my readers, and they also attract links from other bloggers and web publishers. This improves the overall search engine visibility of any website.</li>
</ul>
<p>These are just a few of the things you can do to bring in more visitors. Just don&#8217;t forget about the conversion side of things. All of the traffic in the world won&#8217;t help you if people simply leave the site. So you need to work on your lead- and sales-generation at the same time.</p>
<p>This article answers the question: <em>How do I increase my blog traffic to find new customers?</em> There are many more Q&amp;A sessions on the way. Be sure to check back often.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austinseoguy.com/how-to-increase-traffic-to-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
