Showcase related content to keep visitors clicking

Posted

I've drummed up a lot of visitors by posting links on dzone and StumbleUpon, but the visitors aren't very sticky -- many will visit the single page I linked to and then move on. Looking at my site exits in Google Analytics, I noticed that my category pages had much lower exit rates than my single post pages. This wasn't exactly a surprise, if I thought about it: a visitor to a single-post might see my list of recent posts, but there was no guarantee that any of them would be related to what they came to the blog to read about. Visitors to category pages, on the other hand, would see a collection of related content. I wanted to give visitors an easy way to see other posts that might interest them, so I just installed the Other Posts from Category plugin. The plugin adds links to posts that are in the same category (or categories) as the main post, and it's very configurable via the Wordpress admin. It didn't make sense to me to just have the list at the end of the post -- visitors might never make it there to discover other items that would interest them. A jQuery one-liner copied the list and put it at the top of the post, too:

$('div.ddop').clone().insertAfter('div.post p.byline');
I'll be watching my pages per visit and site exit metrics to see whether it makes a difference --

Filed under  //  analytics   blogging   seo  
Comment (1)
Posted

Suspicious StumbleUpon Bounce Rates?

Posted

I've been promoting some of my blog posts by submitting them to StumbleUpon, and it's been generating a fair bit of traffic -- my post "How I Learned CSS" has done especially well. I've been watching my site using Google Analytics, and I've noticed that visitors from StumbleUpon have a substantially lower bounce rate than, say, visitors from dzone. So I think, "yay, StumbleUpon" and start submitting anything interesting I write to there. But in poking around in my Google Analytics a bit more, I've also noticed that, on pages that I've promoted through SU, I'm seeing strange navigation patterns: for "How I Learned CSS," 40% of visits to the page came from the page itself (and, as it logically follows, 40% of next pages were the page itself). The page was viewed a total of 4,700 times, but a little more than 2,800 of those pageviews were unique. Since bounce rate basically measures whether a new arrival went to another page before leaving the site, I'm not sure it shouldn't count as a bounce if the second page the user visits is the same as the one they were already on.

I'm not seeing this pattern with pages I don't promote on SU, which makes me curious. SU is clearly driving a ton of traffic to my site; it's just not clear that the traffic is actually resulting in the remarkably low bounce rate that Google Analytics shows. If I took out the 40% of people whose next page was the page they were already on, I'm left with not even 1% of people who went to another, different page on the site before leaving -- and suddenly dzone is looking good again. I did a Google search and didn't come up with much except this, which discusses the importance of bounce rate, and this, which suggests using StumbleUpon to reduce your bounce rate. I'm curious whether anyone else is seeing this, and whether it's actually related to StumbleUpon, Google Analytics, or something else. If I had to guess, I'd imagine that this is a result of people using the StumbleUpon toolbar (since it's not happening in all cases), and maybe the toolbar is pre-visiting the page on the user's behalf to make sure it still exists? Update: See the comments and a more in-depth discussion.

Filed under  //  analytics   blogging   bounce rate   google   stumbleupon  
Comments (10)
Posted

rdmey refresh

Posted

When I started this about a month ago, I just grabbed a template that didn't look too awful, changed a few colors, got rid of all the pixel-based font-sizing, and hoped that no one would look under the hood until I had some time to do it myself from scratch. With the holidays here, I finally had the chance, and I spent a couple hours this afternoon tearing down the theme I had and building my own. Gone are gems like

which the old theme used to create space between posts; I've wrapped each post in
...
instead. Each page has an h1 on it now that contains the blog title and, for single-post pages, the title of the post as well. Marcus will be glad to note that the layout is not fixed-width, and it's now nice and readable on my iPhone. I also got rid of nifty class names like "serif," cleaned up the PHP a bit ... all in all, I shaved the css down from 5.1k to 3k, and dropped the size on most of the PHP template files by about 15 percent. I don't claim this is anything gorgeous; mostly I hope that it's decently good markup, that it's easy to navigate, and that it puts the focus on the content where it belongs.

Filed under  //  blogging   css   front-end development   standards   themes   wordpress  
Comments (0)
Posted

Blog Monitoring 101

Posted

I've helped set up a couple of corporate blogs, and -- for corporate bloggers especially -- it can take a little bit of doing to understand your place in the great blog-o-sphere. There is lots of advice out there about how to win friends and influence people with your blog, and I don't purport to know better than everything that's already been written. However, I do have one thing to say to people venturing into the blog waters for the first time: Google is your friend.

Google Blogsearch and Google Reader

To be an active participant in the blogosphere, you need to do more than talk -- you also need to listen. These two tools together provide great insight into what people are saying about topics you care about.
  • Use Google blogsearch to search for terms you care about. Get the URL for the Google Blogsearch feed for each search term (in the left-hand nav of the Google blogsearch page) and add it to Google Reader.
  • See what shows up; pay special attention to contributors who are cited by other contributors.
  • Comment (meaningfully, not gratuitously!) on posts that relate to what you blog about, and include a link back to your blog. If you have a post that's directly related to what someone is writing about, include a link to it.

Google Analytics

I recommend Google Analytics because it provides whole-site metrics, in addition to page-by-page metrics. It's important to understand how visitors arrive at the site as a whole, because visitors can arrive at the same content in countless different ways.
  • Set up a Google Analytics account and add the tracking code to your blog per the instructions.
  • Watch Traffic Sources > Overview to see how traffic arrives at your blog.
  • Watch Traffic Sources > Referring Sites to see which sites are sending traffic to your blog. Consider adding frequent referrers to your blogroll or list of links.
  • Watch Content > Overview to see which posts are doing particularly well or poorly.
  • If you want to make the most of your blogging efforts, monthly metrics reports won't cut it. You'll need to be paying regular attention to analytics information -- especially to referring sites -- to pounce on opportunities and to put out fires.

Filed under  //  analytics   blogging   google  
Comments (0)
Posted