I’ll be speaking at PubCon this year on trademark monitoring issues and Affiliate-based PPC Issues and Options. One of the benefits of that engagement is that I’m able to pass on a 20% off coupon. I did some quick searching and found mostly 10% off coupons so I thought that this was worth contributing. Use this coupon code before Nov 5:
I’ve been to Pubcon two years in a row and have found the content in particular to be very good.
————-
Disclosure: This coupon is the equivalent of an affiliate link, so I’ll receive a small share of the registration (I don’t really post affiliate links, but there wasn’t a way to undo that since it is based on a coupon code). Let me know if you use it and I’ll buy the next round.
Comments Off on Speaking at Pubcon
I spent most of last week at Pubcon. While I was mostly speaking with people about problems they’ve had with trademark abuse, I also walked away with several valuable blog-related tips:
- Use SEO Title Tag. I’d made SEO friendly changes to my titles before, but the control this plugin gives you is very impressive. For example, I wrote the SEO unfriendly (but humorous to me at least) post title “I can has Elvii” and used the plugin to make the title tag “Running the 2007 Las Vegas Marathon as Elvis”
- List Related Posts. This helps drive increased pageviews per visit (mine went up by 11%) and increases your single-post to single-post links. I installed the WASABI Related Posts plugin, and then added this code to my index.php:
< ?php if(function_exists('related_posts') && (is_single())) { ?>
<h4 class="relposts">Related Posts</h4>
<ul class="relposts">
< ?php related_posts(); ?>
</ul>
< ?php } ?>
- Reduce Duplicate content . You want single post pages, not archive pages appearing in Google:
- Write summaries for each post and display those summaries on your category and archive pages instead of the full text of each post. or
- Noindex your archive and paged pages (maybe category and tag also). Joost deValk’s Meta Robots plugin provides functionality to address this.
- Disable your archive links . Make sure your page has a crawl path (category and tags). Noindexed pages retain pagerank. You don’t want to pass pagerank to noindexed pages. I chose to
- Also consider nofollowing your category and tags links. I chose to nofollow category and archive links on my single post pages, while retaining follow on other pages. Joost’s plugin addresses these issues as well. One note, you need to update your theme to use the WordPress template tags wp_list_categories and wp_get_archives and not the deprecated list_cats, wp_list_cats or get_archives.
There was certainly a lot more related content, but these were a few tips that triggered me to make changes to my blog.