
I launched this blog in January 2008 – only 19 months ago. Since then, the blog has seen 100,000 visitors. I look forward to creating more posts that you find interesting. Read more&hellip
Last year at this time:
- The blog was averaging 18 readers per day. Now it averages 357.
- The blog had 14,677 visitors. This month, we hit 100,000.
Most popular blog posts on SEO Denver Blog:

PHP includes for Blogger
Before writing this post, I looked online to see if others have written about this same topic. This might as well be Michael Gray’s “Integrating Blogger Into Your Website: Part II”, which he never wrote — though he did write Part I.
Step 1: Switch Blogger files to PHP
First, you need to update your publishing settings so that Blogger publishes your posts in PHP, not HTML (thanks to DevDoctor):
- Set up your blog to publish via FTP (on Publishing tab)
- Change the ‘Blog Filename’ to index.php
- Change ‘Archive Filename’ to archive.php (on Archiving tab)
- Finally, delete the old index.html file from the blog directory (otherwise it will probably take precedence over the new index.php)
Once you’ve got Blogger pushing out PHP, you’re able to do PHP stuff with the site:
- Update the entire site at once - When I create a website, I always want to create the structure using PHP includes, so that I can set global site variables, and if I change it in one place, it changes across the whole website.
- Set active navigation – Using SSI includes, I used to have to include a different file for each blog section on the site so that I could up. Here, I just send a variable to the navigation.php file, which tells it what page is active.
Next, I will show how to include these files. Read more&hellip

I’ve been working with the WordPress platform for a little while now, and I’ve been a regular blogger since January (though I had been promoting blogging for years earlier, and had my first blog in 2000 [yes, I'm a bit insecure about my blogging creds]). I’ve created many sites with blogging capabilities, some of them based on Blogger.com integration, and others WordPress.
I’ve explained the benefits of blogging many times to my clients, made nagging phone calls reminding them to blog — all to little avail. I even wrote an article about the importance of blogging to help explain myself. But still, the blogs remain silent. Read more&hellip
How to get more comments on your blog
April 11, 2008I was asked a question by a potential client about blog comments. She was concerned that some of the blog designs I’ve created have little user interaction. She wrote (emphasis added by me):
The question is a good one: why aren’t more people interacting? I wanted to dig deeper into the question: what contributes to comments? Read more&hellip